UNPKG

file-box

Version:

Pack a File into Box for easy move/transfer between servers no matter of where it is.(local path, remote url, or cloud storage)

9 lines 354 B
#!/usr/bin/env -S node --no-warnings --loader ts-node/esm // tslint:disable:no-shadowed-variable import { test } from 'tstest'; import { FileBox, } from './file-box.js'; test('FileBoxInterface', async (t) => { const fileBox = FileBox.fromQRCode('test'); t.ok(fileBox, 'should be ok with interface'); }); //# sourceMappingURL=interface.spec.js.map