1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 21:58:42 +03:00
css/lib/each.js

9 lines
175 B
JavaScript
Raw Normal View History

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