UNPKG

227 BJavaScriptView Raw
1const async = require('async');
2const fs = require('fs');
3
4async.map(['CHANGELOG.md','index.js','package.json'], fs.stat, function(err, results) {
5 // results is now an array of stats for each file
6 console.log(results);
7});