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