path-browser-wrapper
Advanced tools
Comparing version
{ | ||
"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; |
3649
1.05%