acb
TypeScript icon, indicating that this package has built-in type declarations

2.1.0 • Public • Published

acb.js

Build status

For all your ACB extracting needs. Based on acb.py.

Usage

CLI

npm install acb -g
acb somefile.acb [-o [outputdir]] [-l] [-t] [-c] [-n] [-w] [-s]

Programing

const { Acb } = require('acb')
const acb = new Acb('path/to/somefile.acb')
// or
// const acb = new Acb(fs.readFileSync('path/to/somefile.acb'), awbFilePathOrBuffer)

// Async
acb.extract() // => Promise
acb.extract('path/to/out') // => Promise
acb.extract(() => console.log('Extract done.')) // => void
acb.extract('path/to/out', () => console.log('Extract done.')) // => void

// Sync
acb.extractSync() // => void
acb.extractSync('path/to/out') // => void

/acb/

    Package Sidebar

    Install

    npm i acb

    Weekly Downloads

    8

    Version

    2.1.0

    License

    MIT

    Unpacked Size

    25.8 kB

    Total Files

    11

    Last publish

    Collaborators

    • toyobayashi