resolve-package-path
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -53,3 +53,3 @@ 'use strict'; | ||
var key = `${target}\x00${basedir}`; | ||
var key = target + '\x00' + basedir; | ||
@@ -56,0 +56,0 @@ var pkgPath; |
{ | ||
"name": "resolve-package-path", | ||
"description": "a special purpose fast memoizing way to resolve a node modules package.json", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"main": "index.js", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -12,3 +12,3 @@ 'use strict'; | ||
describe('resolve-package-cache', function() { | ||
describe('resolve-package-path', function() { | ||
beforeEach(function() { | ||
@@ -22,3 +22,3 @@ fs.removeSync(FIXTURE_ROOT); | ||
it('exposes it\'s cache', function() { | ||
it('exposes its cache', function() { | ||
expect(resolvePackagePath._CACHE).to.be.ok; | ||
@@ -25,0 +25,0 @@ expect(resolvePackagePath._resetCache).to.be.a('function'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
95911