🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

path-browser-wrapper

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

path-browser-wrapper - npm Package Compare versions

Comparing version

to
1.0.1

2

package.json
{
"name": "path-browser-wrapper",
"version": "1.0.0",
"version": "1.0.1",
"description": "A wrapper module to allow NodeJS ’path’ module to execute in the browser context.",

@@ -5,0 +5,0 @@ "main": "path.js",

@@ -8,4 +8,4 @@ /**

const isWin = require("os") === "WINNT";
const win32 = require("path").win32;
const posix = require("path").posix;
const win32 = Object.assign({}, require("path").win32);
const posix = Object.assign({}, require("path").posix);

@@ -12,0 +12,0 @@ win32.resolve = posix.resolve = undefined;