New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

co-fs-extra

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

co-fs-extra - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

generator.js

7

History.md
1.0.0 / 2014-10-28
1.2.0 / 2016-02-18
==================
* deps: fs-extra@0.26
1.0.0 / 2014-10-28
==================
* do not modify original fs-extra
* support all fs-extra methods, include sync methods

8

package.json
{
"name": "co-fs-extra",
"version": "1.1.0",
"version": "1.2.0",
"description": "fs-extra for 'co'",

@@ -15,4 +15,4 @@ "author": {

"devDependencies": {
"autod": "1",
"co": "~3.1.0",
"autod": "2",
"co": "~4.6.0",
"mocha": "~1.10.0",

@@ -28,5 +28,5 @@ "should": "~1.2.2"

"co-from-stream": "~0.0.0",
"fs-extra": "~0.22.1",
"fs-extra": "~0.26.5",
"thunkify-wrap": "~1.0.4"
}
}

@@ -6,7 +6,7 @@ var co = require('co');

describe('co-fs methods', function () {
it('should be exports', function (done) {
co(function* () {
it('should be exports', function () {
return co(function* () {
var ret = yield fs.exists('test/fixtures/msg.json');
assert(true === ret);
})(done);
});
});

@@ -16,8 +16,8 @@ });

describe('fs-extra methods', function () {
it('should be wrapped', function (done) {
co(function* () {
it('should be wrapped', function () {
return co(function* () {
var data = yield fs.readJson('test/fixtures/msg.json');
assert('hello' === data.msg);
})(done);
});
});
});
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