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

avow

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

avow - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

9

avow.js

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

/* Copyright (c) 2012-2013 Brian Cavalier */
/* Copyright (c) 2012-2014 Brian Cavalier */
(function(define, global) {

@@ -167,3 +167,6 @@ define(function() {

if(typeof untrustedThen === 'function') {
call(untrustedThen, x, resolve, reject);
// Prevent thenable self-cycles
call(untrustedThen, x, function(result) {
resolve(result === x ? fulfilled(x) : result);
}, reject);
} else {

@@ -213,2 +216,2 @@ // It's a value, create a fulfilled wrapper

});
})(typeof define === 'function' && define.amd ? define : function(factory) { module.exports = factory(); }, this);
})(typeof define === 'function' && define.amd ? define : function(factory) { module.exports = factory(); }, this);
{
"name": "avow",
"version": "2.0.1",
"version": "2.0.2",
"description": "Example Promises/A+ implementation. Simple, tiny, fast, fully async",
"repository": {
"type": "git",
"url": "git@github.com:briancavalier/avow.git"
},
"keywords": ["promise", "promises", "promises-aplus", "Promises/A+", "async", "asynchronous", "deferred"],
"contributors": {
"author": {
"name": "Brian Cavalier",

@@ -12,3 +16,3 @@ "email": "brian@hovercraftstudios.com"

"devDependencies": {
"promises-aplus-tests": "",
"promises-aplus-tests": "~1",
"jshint": "~1"

@@ -19,2 +23,2 @@ },

}
}
}
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