Skip to content

Commit

Permalink
Merge pull request #78 from ipfs/perf/async/modular
Browse files Browse the repository at this point in the history
use modular async
  • Loading branch information
daviddias committed Aug 17, 2016
2 parents c1576a6 + d6b956f commit 6a92978
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"devDependencies": {
"abstract-blob-store": "^3.2.0",
"aegir": "^5.0.1",
"async": "^1.5.2",
"async": "^2.0.1",
"buffer-loader": "^0.0.1",
"chai": "^3.5.0",
"fs-blob-store": "^5.2.1",
Expand Down
4 changes: 2 additions & 2 deletions test/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

'use strict'

const async = require('async')
const eachSeries = require('async/eachSeries')
const store = require('idb-plus-blob-store')
const tests = require('./repo-test')
const _ = require('lodash')
Expand Down Expand Up @@ -32,7 +32,7 @@ describe('IPFS Repo Tests on the Browser', function () {
const mainBlob = store('ipfs')
const blocksBlob = store('ipfs/blocks')

async.eachSeries(repoData, (file, cb) => {
eachSeries(repoData, (file, cb) => {
if (_.startsWith(file.key, 'datastore/')) {
return cb()
}
Expand Down

0 comments on commit 6a92978

Please sign in to comment.