mirror of
https://github.com/primer/css.git
synced 2024-11-10 16:07:25 +03:00
9 lines
175 B
JavaScript
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()
|
|
}
|
|
}
|