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

21 lines (17 loc) 463 B
var binary = require('../'); var test = require('tap').test; var EventEmitter = require('events').EventEmitter; test('deferred', function (t) { t.plan(1); var em = new EventEmitter; binary.stream(em) .word8('a') .word16be('bc') .tap(function (vars) { t.same(vars, { a : 97, bc : 25187 }); }) ; setTimeout(function () { em.emit('data', new Buffer([ 97, 98, 99 ])); }, 10); });