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

use modular async #61

Merged
merged 1 commit into from
Aug 17, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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