1.0.1 • Published 4 years ago

util-lib-map v1.0.1

Weekly downloads
10
License
ISC
Repository
-
Last release
4 years ago

util-lib-map

Map method of encapsulation integration

useAge

    const { map } = require('util-lib-map');

    let arr = [1, 2, 3, 4, 5, 6, 7];

    const res = map(arr, (item, index) => {
        console.log(index);
        return item * 10;
    })

    console.log('res', res);
1.0.1

4 years ago

1.0.0

4 years ago