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

ambi

Package Overview
Dependencies
Maintainers
2
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ambi - npm Package Compare versions

Comparing version 7.1.0 to 7.2.0-next.1589199272.e668d0c17f1c73507322a98b260003d6a0f0b74c

index.js

4

HISTORY.md
# History
## v7.2.0 2020 May 11
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
## v7.1.0 2020 May 4

@@ -4,0 +8,0 @@

2

LICENSE.md

@@ -8,3 +8,3 @@ <!-- LICENSEFILE/ -->

<ul><li>Copyright &copy; 2013+ <a href="http://bevry.me">Bevry Pty Ltd</a></li>
<li>Copyright &copy; 2011-2012 <a href="http://balupton.com">Benjamin Lupton</a></li></ul>
<li>Copyright &copy; 2011-2012 <a href="https://balupton.com">Benjamin Lupton</a></li></ul>

@@ -11,0 +11,0 @@ and licensed under:

{
"name": "ambi",
"version": "7.1.0",
"version": "7.2.0-next.1589199272.e668d0c17f1c73507322a98b260003d6a0f0b74c",
"description": "Ambi lets you execute any function ambidextrously; providing you the ability to execute any function (be it synchronous, asynchronous, returns, callbacks, promises) as if it returned a promise.",

@@ -12,3 +12,2 @@ "homepage": "https://github.com/bevry/ambi",

"browser",
"dom",
"esnext",

@@ -58,14 +57,18 @@ "exec",

"wishlistURL": "https://bevry.me/wishlist",
"travisTLD": "com"
"travisTLD": "com",
"githubUsername": "bevry",
"githubRepository": "ambi",
"githubSlug": "bevry/ambi",
"npmPackageName": "ambi"
}
},
"funding": "https://bevry.me/fund",
"author": "2013+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), 2011-2012 Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
"author": "2013+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), 2011-2012 Benjamin Lupton <b@lupton.cc> (https://balupton.com)",
"maintainers": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
],
"contributors": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
"Sean Fridman <mail@seanfridman.com> (http://seanfridman.com)",
"Chris Tavares (https://github.com/christav)"
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)",
"Chris Tavares (https://github.com/christav)",
"Sean Fridman <mail@seanfridman.com> (https://github.com/sfrdmn)"
],

@@ -112,6 +115,7 @@ "bugs": {

"type": "commonjs",
"main": "source/index.js",
"main": "index.js",
"browser": "edition-browsers/index.js",
"dependencies": {
"typechecker": "^6.4.0"
"editions": "^2.3.0",
"typechecker": "^7.0.0"
},

@@ -123,13 +127,13 @@ "devDependencies": {

"@babel/preset-env": "^7.9.6",
"@bevry/update-contributors": "^1.0.1",
"assert-helpers": "^6.1.0",
"eslint": "^6.8.0",
"eslint-config-bevry": "^3.3.0",
"@bevry/update-contributors": "^1.5.0",
"assert-helpers": "^6.2.0",
"eslint": "^7.0.0",
"eslint-config-bevry": "^3.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jsdoc": "^3.6.4",
"kava": "^4.4.0",
"kava": "^5.0.0",
"minami": "^1.2.3",
"prettier": "^2.0.5",
"projectz": "^1.19.1",
"projectz": "^2.1.0",
"surge": "^0.21.3",

@@ -160,4 +164,4 @@ "valid-directory": "^1.6.0"

"our:verify:eslint": "npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source",
"our:verify:prettier": "prettier --write .",
"test": "node ./source/test.js"
"our:verify:prettier": "npx prettier --write .",
"test": "node ./test.js"
},

@@ -164,0 +168,0 @@ "eslintConfig": {

@@ -38,3 +38,3 @@ <!-- TITLE/ -->

[Complete API Documentation.](http://master.ambi.bevry.surge.sh/docs/)
[Complete API Documentation.](http://master.ambi.bevry.surge.sh/docs/index.html)

@@ -60,3 +60,3 @@ [View Example Usage.](https://github.com/bevry/ambi/blob/master/example.js)

<script type="module">
import * as pkg from '//dev.jspm.io/ambi@7.1.0'
import * as pkg from '//dev.jspm.io/ambi@7.2.0'
</script>

@@ -69,3 +69,3 @@ ```

<ul><li><code>ambi</code> aliases <code>ambi/source/index.js</code></li>
<ul><li><code>ambi</code> aliases <code>ambi/index.js</code> which uses the <a href="https://github.com/bevry/editions" title="You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment">Editions Autoloader</a> to automatically select the correct edition for the consumer's environment</li>
<li><code>ambi/source/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> source code for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>

@@ -115,3 +115,3 @@ <li><code>ambi/edition-browsers/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> compiled for web browsers with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li></ul>

<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/ambi/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/ambi">view contributions</a></li></ul>
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/ambi/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/ambi">view contributions</a></li></ul>

@@ -136,6 +136,5 @@ <h3>Sponsors</h3>

<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/ambi/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/ambi">view contributions</a></li>
<li><a href="http://seanfridman.com">Sean Fridman</a> — <a href="https://github.com/bevry/ambi/commits?author=sfrdmn" title="View the GitHub contributions of Sean Fridman on repository bevry/ambi">view contributions</a></li>
<ul><li><a href="https://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/ambi/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/ambi">view contributions</a></li>
<li><a href="https://github.com/christav">Chris Tavares</a> — <a href="https://github.com/bevry/ambi/commits?author=christav" title="View the GitHub contributions of Chris Tavares on repository bevry/ambi">view contributions</a></li>
<li><a href="http://github.com/apps/dependabot-preview">dependabot-preview[bot]</a> — <a href="https://github.com/bevry/ambi/commits?author=dependabot-preview[bot]" title="View the GitHub contributions of dependabot-preview[bot] on repository bevry/ambi">view contributions</a></li></ul>
<li><a href="https://github.com/sfrdmn">Sean Fridman</a> — <a href="https://github.com/bevry/ambi/commits?author=sfrdmn" title="View the GitHub contributions of Sean Fridman on repository bevry/ambi">view contributions</a></li></ul>

@@ -154,3 +153,3 @@ <a href="https://github.com/bevry/ambi/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a>

<ul><li>Copyright &copy; 2013+ <a href="http://bevry.me">Bevry Pty Ltd</a></li>
<li>Copyright &copy; 2011-2012 <a href="http://balupton.com">Benjamin Lupton</a></li></ul>
<li>Copyright &copy; 2011-2012 <a href="https://balupton.com">Benjamin Lupton</a></li></ul>

@@ -157,0 +156,0 @@ and licensed under:

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