Socket
Socket
Sign inDemoInstall

q-io

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

q-io - npm Package Compare versions

Comparing version 1.3.2 to 1.4.0

11

fs.js

@@ -103,2 +103,13 @@ /**

exports.move = function (source, target) {
return Q.ninvoke(FS, "rename", String(source), String(target))
.fail(function (error) {
error.message = (
"Can't move " + JSON.stringify(source) + " to " +
JSON.stringify(target) + " because " + error.message
);
throw error;
});
};
exports.makeDirectory = function (path, mode) {

@@ -105,0 +116,0 @@ path = String(path);

2

package.json
{
"name": "q-io",
"version": "1.3.2",
"version": "1.4.0",
"description": "IO using Q promises",

@@ -5,0 +5,0 @@ "homepage": "http://github.com/kriskowal/q-io/",

@@ -57,2 +57,4 @@

### move(source, target)
### link(source, taget)

@@ -59,0 +61,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc