- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
28 lines
831 B
Markdown
28 lines
831 B
Markdown
# base64-arraybuffer
|
|
|
|

|
|
[](https://www.npmjs.org/package/base64-arraybuffer)
|
|
[](https://www.npmjs.org/package/base64-arraybuffer)
|
|
|
|
Encode/decode base64 data into ArrayBuffers
|
|
|
|
### Installing
|
|
You can install the module via npm:
|
|
|
|
npm install base64-arraybuffer
|
|
|
|
## API
|
|
The library encodes and decodes base64 to and from ArrayBuffers
|
|
|
|
- __encode(buffer)__ - Encodes `ArrayBuffer` into base64 string
|
|
- __decode(str)__ - Decodes base64 string to `ArrayBuffer`
|
|
|
|
### Testing
|
|
You can run the test suite with:
|
|
|
|
npm test
|
|
|
|
## License
|
|
Copyright (c) 2012 Niklas von Hertzen
|
|
Licensed under the MIT license.
|