Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/traverse/examples/negative.js
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

11 lines
206 B
JavaScript
Executable File

'use strict';
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);