UNPKG

compound-ex4

Version:

Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)

12 lines (9 loc) 230 B
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)); });