UNPKG

big-int-stats

Version:

Create BigIntStats from fs.Stats for compatiblity on earlier versions of Node.js

11 lines (9 loc) 314 B
import assert from 'assert'; import { BigIntStats, toBigIntStats, toStats } from 'big-int-stats'; describe('exports .mjs', () => { it('exports', () => { assert.equal(typeof BigIntStats, 'function'); assert.equal(typeof toBigIntStats, 'function'); assert.equal(typeof toStats, 'function'); }); });