0.4.0
Binary property list parsing with Deno, courtesy of https://github.com/joeferner/node-bplist-parser
Repository
Current version released
2 years ago
deno.land/x/bplist_parser
A Deno port for the
bplist-parser
NPM package. Parses
macOS binary property lists into
equivalent (non-binary) JavaScript values.
Usage
// You should @version this import
import { parseBuffer } from "https://deno.land/x/bplist_parser/mod.ts";
const file = await Deno.readFile("./path/to/file.bplist");
const bplist = parseBuffer(file);
This module was adapted from https://github.com/joeferner/node-bplist-parser. The original license can be found in that repo’s README.
All additional work is copyright 2022 Connor Logan. All rights reserved.