UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

8 lines (7 loc) 156 B
export default function map(arr, fn) { var res = [], i; for (i = 0; i < arr.length; ++i) { res.push(fn(arr[i], i)); } return res; }