4 lines
84 B
Plaintext
4 lines
84 B
Plaintext
|
export function isNode() {
|
||
|
return typeof window !== 'undefined' ? false : true;
|
||
|
}
|