UNPKG

@aws/pdk

Version:

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

12 lines (10 loc) 210 B
export default 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; }