1
1
mirror of https://github.com/primer/css.git synced 2024-11-24 05:06:04 +03:00
css/docs/lib/each.js
Shawn Allen 52e8996cee lint
2018-12-17 15:26:50 -08:00

9 lines
186 B
JavaScript

module.exports = function each(fn) {
return (files, metal, done) => {
for (const [path, file] of Object.entries(files)) {
fn(path, file, files, metal)
}
done()
}
}