File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/concat-map/example

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

map.js171 B · 7 lines
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);