Socket
Socket
Sign inDemoInstall

rimraf

Package Overview
Dependencies
11
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.6.1 to 2.6.2

2

package.json
{
"name": "rimraf",
"version": "2.6.1",
"version": "2.6.2",
"main": "rimraf.js",

@@ -5,0 +5,0 @@ "description": "A deep deletion module for node (like `rm -rf`)",

@@ -8,2 +8,3 @@ module.exports = rimraf

var glob = require("glob")
var _0666 = parseInt('666', 8)

@@ -169,3 +170,3 @@ var defaultGlobOpts = {

options.chmod(p, 666, function (er2) {
options.chmod(p, _0666, function (er2) {
if (er2)

@@ -192,3 +193,3 @@ cb(er2.code === "ENOENT" ? null : er)

try {
options.chmodSync(p, 666)
options.chmodSync(p, _0666)
} catch (er2) {

@@ -195,0 +196,0 @@ if (er2.code === "ENOENT")

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc