+6
-0
| # Changelog | ||
| ## [v0.9.2] | ||
| > Dec 30, 2015 | ||
| - Fix error with ES5 engines. | ||
| ## [v0.9.1] | ||
@@ -87,1 +92,2 @@ > Dec 30, 2015 | ||
| [v0.9.1]: https://github.com/rstacruz/scour/compare/v0.9.0...v0.9.1 | ||
| [v0.9.2]: https://github.com/rstacruz/scour/compare/v0.9.1...v0.9.2 |
+2
-2
| { | ||
| "name": "scourjs", | ||
| "description": "Traverse objects and arrays", | ||
| "version": "0.9.1", | ||
| "version": "0.9.2", | ||
| "author": "Rico Sta. Cruz <rico@ricostacruz.com>", | ||
@@ -16,3 +16,3 @@ "babel": { | ||
| "object-assign": "4.0.1", | ||
| "scour-search": "0.3.1", | ||
| "scour-search": "0.3.2", | ||
| "to-function": "2.0.6" | ||
@@ -19,0 +19,0 @@ }, |
@@ -13,3 +13,3 @@ /** | ||
| } else if (isArguments && keypath.length === 1) { | ||
| if (Array.isArray(keypath[0])) return keypath[0].map((k) => '' + k) | ||
| if (Array.isArray(keypath[0])) return keypath[0].map(function (k) { return '' + k }) | ||
| if (typeof keypath[0] === 'number') return [ '' + keypath[0] ] | ||
@@ -16,0 +16,0 @@ return ('' + keypath[0]).split('.') |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
533110
0.03%+ Added
- Removed
Updated