mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-06 14:20:42 +02:00
7 lines
222 B
JavaScript
7 lines
222 B
JavaScript
'use strict';
|
|
const pMap = require('p-map');
|
|
|
|
module.exports = (iterable, options) => pMap(iterable, element => element(), options);
|
|
// TODO: Remove this for the next major release
|
|
module.exports.default = module.exports;
|