mirror of
https://github.com/primer/css.git
synced 2024-11-13 08:04:16 +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()
|
||
|
}
|
||
|
}
|