Comparing version 1.0.1 to 1.0.2
@@ -116,3 +116,6 @@ 'use strict'; | ||
let buffer = Buffer.isBuffer(data) ? data : new Buffer('' + data, options.encoding || 'utf8'); | ||
writeAll(fd, buffer, 0, buffer.length, 0, (...args) => cb.apply(null, args.concat(newPath))); | ||
writeAll(fd, buffer, 0, buffer.length, 0, () => { | ||
const args = Array.prototype.slice.call(arguments); | ||
cb.apply(null, args.concat(newPath)); | ||
}); | ||
} | ||
@@ -119,0 +122,0 @@ }); |
@@ -27,3 +27,3 @@ { | ||
}, | ||
"version": "1.0.1" | ||
"version": "1.0.2" | ||
} |
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
8245
153