JSPM

puz-parser

0.3.6
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11
  • Score
    100M100P100Q59767F
  • License ISC

Just a simple .puz parser

Package Exports

  • puz-parser
  • puz-parser/package.json

Readme

Puz Parser

Just a simple .puz parser.

Install

npm install puz-parser --save

Usage

const parse = require('puz-parser');
// Or
import parse from 'puz-parser';

// Load a .puz file
const data = new Uint8Array(buffer);

// Parse the Uint8Array data
const puz = parse(data);

Types

Types are available in src/types.ts.