UNPKG

datapilot-cli

Version:

Enterprise-grade streaming multi-format data analysis with comprehensive statistical insights and intelligent relationship detection - supports CSV, JSON, Excel, TSV, Parquet - memory-efficient, cross-platform

16 lines (12 loc) 346 B
var assert = require('assert'); var Traverse = require('traverse'); exports['traverse an object with nested functions'] = function () { var to = setTimeout(function () { assert.fail('never ran'); }, 1000); function Cons (x) { clearTimeout(to); assert.equal(x, 10); }; Traverse(new Cons(10)); };