剩余模块:生产入库,销售出库

This commit is contained in:
2025-05-20 16:07:49 +08:00
parent 933ddab8f3
commit b1d8dec263
299 changed files with 38798 additions and 0 deletions

BIN
node_modules/js-binary-schema-parser/example/box.gif generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 B

BIN
node_modules/js-binary-schema-parser/example/dog.gif generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

BIN
node_modules/js-binary-schema-parser/example/horses.gif generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

10
node_modules/js-binary-schema-parser/example/index.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
import fs from 'fs'
import { parse } from '../src'
import { buildStream } from '../src/parsers/uint8'
import { GIF } from '../src/schemas'
debugger
const data = fs.readFileSync('./example/dog.gif')
const result = parse(buildStream(new Uint8Array(data)), GIF)
console.log(result)