1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/traverse/test/obj.js

14 lines
222 B
JavaScript
Raw Normal View History

2024-01-16 21:26:16 +08:00
'use strict';
2023-12-18 13:12:25 +08:00
var test = require('tape');
var traverse = require('../');
test('traverse an object with nested functions', function (t) {
2024-01-16 21:26:16 +08:00
t.plan(1);
function Cons(x) {
t.equal(x, 10);
}
traverse(new Cons(10));
2023-12-18 13:12:25 +08:00
});