git ssb

0+

cel / pull-git-pack-concat



Commit a2892aa5c1069e88aa08a58c5722a33c05a68adc

Use looper v4

cel committed on 5/15/2020, 8:45:01 PM
Parent: a237a962d290b9ec6eecd57f40dd431f7e585b84

Files changed

index.jschanged
package.jsonchanged
index.jsView
@@ -16,15 +16,16 @@
1616 }
1717
1818 function forEachAsync(arr, fn, cb) {
1919 var i = 0
20- loop(function (next) {
20 + var next = loop(function () {
2121 if (i >= arr.length) return cb && cb()
2222 fn(arr[i++], function (err) {
2323 if (err) return cb && cb(err)
2424 next()
2525 })
2626 })
27 + next()
2728 }
2829
2930 function compareByOffset(a, b) {
3031 return a.offset - b.offset
package.jsonView
@@ -14,9 +14,9 @@
1414 },
1515 "license": "Fair",
1616 "dependencies": {
1717 "pull-git-packidx-parser": "^1.0.0",
18- "looper": "^3.0.0",
18 + "looper": "^4.0.0",
1919 "multicb": "^1.2.1",
2020 "pull-block-filter": "^1.0.0",
2121 "pull-cat": "^1.1.8",
2222 "pull-skip-footer": "^0.1.0",

Built with git-ssb-web