@jymfony/util
Advanced tools
Comparing version 0.1.0-alpha.10 to 0.1.0-alpha.11
@@ -13,2 +13,3 @@ require('./lib/Error/trigger_deprecated'); | ||
require('./lib/Object/filter'); | ||
require('./lib/Object/intersectKey'); | ||
require('./lib/Object/merge'); | ||
@@ -24,2 +25,3 @@ require('./lib/Object/obj2map'); | ||
require('./lib/String/crc32'); | ||
require('./lib/String/escapeshellarg'); | ||
@@ -44,2 +46,3 @@ require('./lib/String/levenshtein'); | ||
require('./lib/Async/Async'); | ||
require('./lib/Async/ForAwait'); | ||
require('./lib/Async/sleep'); |
global.isArray = Array.isArray; | ||
global.isBuffer = Buffer.isBuffer; | ||
const toString = Object.prototype.toString; | ||
@@ -3,0 +4,0 @@ |
@@ -16,3 +16,3 @@ // Replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&') | ||
} else { | ||
charList.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); | ||
charList = __jymfony.regex_quote(charList); | ||
} | ||
@@ -34,3 +34,3 @@ | ||
} else { | ||
charList.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); | ||
charList = __jymfony.regex_quote(charList); | ||
} | ||
@@ -37,0 +37,0 @@ |
{ | ||
"name": "@jymfony/util", | ||
"version": "0.1.0-alpha.10", | ||
"version": "0.1.0-alpha.11", | ||
"description": "Jymfony util functions", | ||
@@ -19,9 +19,9 @@ "main": "index.js", | ||
"dependencies": { | ||
"@jymfony/exceptions": "0.1.0-alpha.10" | ||
"@jymfony/exceptions": "0.1.0-alpha.11" | ||
}, | ||
"devDependencies": { | ||
"@jymfony/autoloader": "0.1.0-alpha.10", | ||
"@jymfony/datastructure": "0.1.0-alpha.10", | ||
"@jymfony/autoloader": "*", | ||
"@jymfony/datastructure": "*", | ||
"chai": "^3.5.0", | ||
"mocha": "^3.0" | ||
"mocha": "^5.0" | ||
}, | ||
@@ -28,0 +28,0 @@ "config": { |
@@ -42,3 +42,3 @@ require('../../lib/Object/equal'); | ||
it('returns false for literal vs instance with same value', () => { | ||
expect(__jymfony.equal(true, new Boolean(true))).to.be.faòse; | ||
expect(__jymfony.equal(true, new Boolean(true))).to.be.false; | ||
}); | ||
@@ -45,0 +45,0 @@ |
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
172827
72
5041
+ Added@jymfony/exceptions@0.1.0-alpha.11(transitive)
- Removed@jymfony/exceptions@0.1.0-alpha.10(transitive)