updated npm modules

This commit is contained in:
2019-05-20 20:43:45 -05:00
parent 2319197b81
commit f166b72b7d
1113 changed files with 8758 additions and 12227 deletions
+8 -4
View File
@@ -25,15 +25,19 @@ const sites = [
'github.com'
];
const mapper = el => got.head(el).then(res => res.requestUrl);
(async () => {
const mapper = async site => {
const {requestUrl} = await got.head(site);
return requestUrl;
};
const result = await pMap(sites, mapper, {concurrency: 2});
pMap(sites, mapper, {concurrency: 2}).then(result => {
console.log(result);
//=> ['http://sindresorhus.com/', 'http://ava.li/', 'http://todomvc.com/', 'http://github.com/']
});
})();
```
## API
### pMap(input, mapper, [options])