UNPKG

@extra-iterable/map

Version:

Updates values based on map function.

8 lines (7 loc) 127 B
'use strict'; function* map(x, fm) { var i = -1; for (var v of x) yield fm(v, ++i, x); } module.exports = map;