1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-03 09:39:16 +02:00

Up-rev to 1.2.0 to account for new image/parsers package.

This commit is contained in:
Jeff Schiller 2023-12-22 20:57:08 -08:00
parent 757a489c02
commit 6d1d33e970
3 changed files with 5 additions and 5 deletions

3
.gitignore vendored
View file

@ -1,4 +1,3 @@
.DS_Store
coverage coverage
image/.DS_Store
node_modules node_modules
tests/archive.spec.notready.js

View file

@ -431,7 +431,6 @@ export class GifParser extends EventTarget {
const blockSize = this.bstream.readNumber(1); const blockSize = this.bstream.readNumber(1);
if (blockSize !== 11) throw `AE: Block size of ${blockSize}`; if (blockSize !== 11) throw `AE: Block size of ${blockSize}`;
// TODO: Extract EXIF / XMP / whatever.
const applicationIdentifier = this.bstream.readString(8); const applicationIdentifier = this.bstream.readString(8);
const applicationAuthenticationCode = this.bstream.readBytes(3); const applicationAuthenticationCode = this.bstream.readBytes(3);
const bytesArr = []; const bytesArr = [];

View file

@ -1,6 +1,6 @@
{ {
"name": "@codedread/bitjs", "name": "@codedread/bitjs",
"version": "1.1.8", "version": "1.2.0",
"description": "Binary Tools for JavaScript", "description": "Binary Tools for JavaScript",
"homepage": "https://github.com/codedread/bitjs", "homepage": "https://github.com/codedread/bitjs",
"author": "Jeff Schiller", "author": "Jeff Schiller",
@ -18,9 +18,11 @@
"untar", "untar",
"file", "file",
"codecs", "codecs",
"gif",
"mp4", "mp4",
"avc", "avc",
"webm" "webm",
"webp"
], ],
"main": "./index.js", "main": "./index.js",
"type": "module", "type": "module",