Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 14fd696ce6f946ea1dbffed5cf23d886 > files > 9

nodejs-traverse-0.6.5-1.fc18.noarch.rpm

var traverse = require('traverse');
var obj = [ 5, 6, -3, [ 7, 8, -2, 1 ], { f : 10, g : -13 } ];

traverse(obj).forEach(function (x) {
    if (x < 0) this.update(x + 128);
});

console.dir(obj);