2024-01-16 21:26:16 +08:00
|
|
|
'use strict';
|
|
|
|
|
2023-12-18 13:12:25 +08:00
|
|
|
var traverse = require('../');
|
|
|
|
var test = require('tape');
|
|
|
|
|
|
|
|
test('negative update test', function (t) {
|
2024-01-16 21:26:16 +08:00
|
|
|
var obj = [5, 6, -3, [7, 8, -2, 1], { f: 10, g: -13 }];
|
|
|
|
var fixed = traverse.map(obj, function (x) {
|
|
|
|
if (x < 0) { this.update(x + 128); }
|
|
|
|
});
|
|
|
|
|
|
|
|
t.same(
|
|
|
|
fixed,
|
|
|
|
[5, 6, 125, [7, 8, 126, 1], { f: 10, g: 115 }],
|
|
|
|
'Negative values += 128'
|
|
|
|
);
|
|
|
|
|
|
|
|
t.same(
|
|
|
|
obj,
|
|
|
|
[5, 6, -3, [7, 8, -2, 1], { f: 10, g: -13 }],
|
|
|
|
'Original references not modified'
|
|
|
|
);
|
|
|
|
|
|
|
|
t.end();
|
2023-12-18 13:12:25 +08:00
|
|
|
});
|