1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 13:51:52 +03:00
css/lib/each.js
2019-02-04 12:55:18 -08:00

9 lines
175 B
JavaScript

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