chromium-pickle-ts
v1.0.1
Published
This is a TypeScript port of chromium-pickle-js so as to avoid the use of `const pickle = require('chromium-pickle-js')` in TypeScript projects
Downloads
4
Maintainers
Readme
Chromium Pickle TS
Usage
import { Pickle } from "chromium-pickle-ts";
const pickle = new PickleFactory();
Buffer buf = new Buffer.alloc(8);
const fromBuf = pickle.createFromBuffer(buf);
const read = fromBuf.createIterator().readUint32();
Super basic example that's not really perfect syntax. Everything after const pickle = new PickleFactory();
works exactly the same as chromium-pickle-js