New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

tfjs-image-recognition-base

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tfjs-image-recognition-base - npm Package Compare versions

Comparing version

to
0.2.1

src/env/isBrowser.ts

2

package.json
{
"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
}