ente/thirdparty/face-api/env/isNodejs.ts

8 lines
293 B
TypeScript
Raw Normal View History

export function isNodejs(): boolean {
return typeof global === 'object'
&& typeof require === 'function'
&& typeof module !== 'undefined'
// issues with gatsby.js: module.exports is undefined
// && !!module.exports
&& typeof process !== 'undefined' && !!process.version
}