Skip to content
This repository has been archived by the owner on Aug 12, 2020. It is now read-only.

Commit

Permalink
Merge pull request #61 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 03597a7 + f58d8a1 commit ec52fec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/browser.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-env mocha */
'use strict'

const async = require('async')
const eachSeries = require('async/eachSeries')
const store = require('idb-plus-blob-store')
const _ = require('lodash')
const IPFSRepo = require('ipfs-repo')
Expand Down Expand Up @@ -29,7 +29,7 @@ describe('IPFS data importing 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 ec52fec

Please sign in to comment.