Skip to content

Commit

Permalink
Removing the any-promise dependency
Browse files Browse the repository at this point in the history
Using Node's built-in Promise instead of any-promise.
Also modifying the package.json and Travis configuration to use a Node version
that has built-in support for Promise (>=4).
  • Loading branch information
Ian Walter committed Feb 22, 2018
1 parent 42c5c19 commit a204f4d
Show file tree
Hide file tree
Showing 5 changed files with 1,445 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
node_js:
- "0.10"
- "0.11"
- "4"
- "9"
sudo: false
language: node_js
script: "npm run test-cov"
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const assert = require('assert')
const Promise = require('any-promise')

module.exports = reduce

Expand Down

0 comments on commit a204f4d

Please sign in to comment.