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

17 lines (14 loc) 366 B
var binary = require('../'); var test = require('tap').test; test('scan buf null', function (t) { t.plan(3); var vars = binary(new Buffer('\x63foo bar baz')) .word8('a') .scan('b', '\r\n') .word8('c') .vars ; t.same(vars.a, 99); t.same(vars.b.toString(), 'foo bar baz'); t.strictEqual(vars.c, null); });