Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

async-try

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-try - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "async-try",
"version": "0.0.1",
"version": "0.0.2",
"dependencies": {

@@ -5,0 +5,0 @@ "lodash": "^2.4.1"

@@ -1,2 +0,46 @@

TRY
===
async-try, helper module to debug asyncronous code.
usage:
```
var _ = require("lodash");
var TRY = require("async-try").TRY;
var waitForIt = _.curry(function(time, callback){
console.log("this module is legen...");
console.log("...wait for it...");
if ( time > 3 ){
setTimeout(function(){
console.log("...dary");
}, time*1000 );
callback(null, "legendary!");
} else {
callback("need more patience");
}
});
var throwErr = function(error){
Throw new Error(error);
}
```
Then for
```
TRY( "waiting for it", waitForIt(5), throwErr, function(result){
console.log("This module is " + result);
})
```
we get
```
this module is legen...
...wait for it...
...dary
This module is legendary!
```
But for
```
TRY( "waiting for it", waitForIt(2), throwErr, function(result){
console.log("This module is " + result);
})
```
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