2.1.0 • Published 3 years ago

acb v2.1.0

Weekly downloads
8
License
MIT
Repository
github
Last release
3 years ago

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
2.1.0

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago