Comparing version 2.5.3 to 2.5.4
{ | ||
"name": "rimraf", | ||
"version": "2.5.3", | ||
"version": "2.5.4", | ||
"main": "rimraf.js", | ||
@@ -5,0 +5,0 @@ "description": "A deep deletion module for node (like `rm -rf`)", |
@@ -51,5 +51,5 @@ module.exports = rimraf | ||
assert.equal(typeof p, 'string', 'rimraf: path should be a string') | ||
assert(options, 'rimraf: missing options') | ||
assert.equal(typeof cb, 'function', 'rimraf: callback function required') | ||
assert(options, 'rimraf: invalid options argument provided') | ||
assert.equal(typeof options, 'object', 'rimraf: options should be object') | ||
assert.equal(typeof cb, 'function', 'rimraf: callback function required') | ||
@@ -56,0 +56,0 @@ defaults(options) |
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
14088