mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-02 20:41:18 +08:00
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
var concatMap = require('../');
|
|
var xs = [ 1, 2, 3, 4, 5, 6 ];
|
|
var ys = concatMap(xs, function (x) {
|
|
return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];
|
|
});
|
|
console.dir(ys);
|