UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

14 lines (11 loc) 219 B
function _map(fn, functor) { var idx = 0; var len = functor.length; var result = Array(len); while (idx < len) { result[idx] = fn(functor[idx]); idx += 1; } return result; } module.exports = _map;