1
1
mirror of https://github.com/primer/css.git synced 2024-12-18 03:31:43 +03:00
css/docs/lib/each.js

10 lines
187 B
JavaScript
Raw Normal View History

2018-10-20 02:02:39 +03:00
module.exports = function each(fn) {
return (files, metal, done) => {
for (const [path, file] of Object.entries(files)) {
fn(path, file, files, metal)
}
done()
}
}