git ssb

1+

Matt McKegg / mutant



Tree: 073f2ca837054c3b04113dd573e1a9e8b0c6ed29

Files: 073f2ca837054c3b04113dd573e1a9e8b0c6ed29 / for-each.js

225 bytesRaw
1var resolve = require('./resolve')
2
3module.exports = function forEach (sources, fn) {
4 if (sources && !sources.forEach) {
5 sources = resolve(sources)
6 }
7
8 if (sources && sources.forEach) {
9 sources.forEach(fn)
10 }
11}
12

Built with git-ssb-web