UNPKG

nbff-parser

Version:

A simple parser for the Netscape Bookmark file format

11 lines (8 loc) 182 B
#!/usr/bin/env node import { main } from './main.js' main(process.argv.slice(2)) .then(console.log) .catch(error => { console.error(error.message) process.exit(1) })