git ssb

1+

Matt McKegg / mutant



Tree: 47af4cfff131b656d6f418cd79de17a67d34fd4e

Files: 47af4cfff131b656d6f418cd79de17a67d34fd4e / 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