| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 | | 'use strict'; |  |   |  | var test = require('tape'); |  | var traverse = require('../'); |  |   |  | test('dateEach', function (t) { |  |     var obj = { x: new Date(), y: 10, z: 5 }; |  |   |  |     var counts = {}; |  |   |  |     traverse(obj).forEach(function (node) { |  |         var type = (node instanceof Date && 'Date') || typeof node; |  |         counts[type] = (counts[type] || 0) + 1; |  |     }); |  |   |  |     t.same(counts, { |  |         object: 1, |  |         Date: 1, |  |         number: 2, |  |     }); |  |     t.end(); |  | }); |  |   |  | test('dateMap', function (t) { |  |     var obj = { x: new Date(), y: 10, z: 5 }; |  |   |  |     var res = traverse(obj).map(function (node) { |  |         if (typeof node === 'number') { this.update(node + 100); } |  |     }); |  |   |  |     t.ok(obj.x !== res.x); |  |     t.same(res, { |  |         x: obj.x, |  |         y: 110, |  |         z: 105, |  |     }); |  |     t.end(); |  | }); | 
 |