6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
/**
|
|
* Returns true if the user is on a Mac. Caches the result value.
|
|
* @param reset - Reset the cached result value (mainly for testing).
|
|
*/
|
|
export declare function isMac(reset?: boolean): boolean;
|