HOME


sh-3ll 1.0
DIR:/proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/traverse/test/
Upload File :
Current File : //proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/traverse/test/obj.js
var test = require('tape');
var traverse = require('../');

test('traverse an object with nested functions', function (t) {
    t.plan(1);
    
    function Cons (x) {
        t.equal(x, 10)
    };
    traverse(new Cons(10));
});