UNPKG

find-node-modules

Version:

Return an array of all parent node_modules directories

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)); });