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
image/.DS_Store
node_modules
tests/archive.spec.notready.js

View file

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

View file

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