tfjs-image-recognition-base
Advanced tools
Comparing version
{ | ||
"name": "tfjs-image-recognition-base", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "A shared codebase for face-api.js and tfjs-tiny-yolo-v2.", | ||
@@ -5,0 +5,0 @@ "module": "./build/es6/index.js", |
@@ -5,3 +5,3 @@ import { initializeEnvironment } from './initialize'; | ||
let environment: Environment | ||
let environment: Environment | null | ||
@@ -13,2 +13,5 @@ function initialize() { | ||
function getEnv(): Environment { | ||
if (!environment) { | ||
throw new Error('getEnv - environment is not defined, check isNodejs() and isBrowser()') | ||
} | ||
return environment | ||
@@ -20,2 +23,6 @@ } | ||
if (!environment) { | ||
throw new Error('monkeyPatch - environment is not defined, check isNodejs() and isBrowser()') | ||
} | ||
const { Canvas = environment.Canvas, Image = environment.Image } = env | ||
@@ -22,0 +29,0 @@ environment.Canvas = Canvas |
import { isNodejs } from './isNodejs'; | ||
import { Environment } from './types'; | ||
import { isBrowser } from './isBrowser'; | ||
export function initializeEnvironment(): Environment { | ||
return isNodejs() | ||
? initializeNodejsEnv() | ||
: initializeBrowserEnv() | ||
export function initializeEnvironment(): Environment | null { | ||
if (isNodejs()) { | ||
return initializeNodejsEnv() | ||
} | ||
if (isBrowser()) { | ||
return initializeBrowserEnv() | ||
} | ||
return null | ||
} | ||
@@ -9,0 +14,0 @@ |
export function isNodejs(): boolean { | ||
return typeof module !== 'undefined' && !!module.exports | ||
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 | ||
} |
388839
0.22%409
0.25%6216
0.36%