2.1.0 • Published 4 years ago

acb v2.1.0

Weekly downloads
8
License
MIT
Repository
github
Last release
4 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

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.2.5

6 years ago

1.2.4

6 years ago

1.2.3

7 years ago

1.2.2

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago