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

asa

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asa - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

example.coffee

19

bin/asa.js
#!/usr/bin/env node
// Generated by CoffeeScript 1.6.2
(function() {
var once;
var asa;
module.exports = once = function(test, cb) {
if (test()) {
return cb();
} else {
return setTimeout((function() {
return once(test, cb);
}), 50);
}
module.exports = asa = function(test, cb) {
var loop_timer;
return loop_timer = setInterval(function() {
if (test()) {
clearInterval(loop_timer);
return cb();
}
}, 50);
};
}).call(this);
{
"name": "asa",
"version": "0.1.0",
"version": "0.1.1",
"description": "as soon as something, do something",

@@ -5,0 +5,0 @@ "homepage": "http://github.com/spro/asa",

Sorry, the diff of this file is not supported yet

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