GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
686 B

2 months ago
  1. @protobufjs/base64
  2. ==================
  3. [![npm](https://img.shields.io/npm/v/@protobufjs/base64.svg)](https://www.npmjs.com/package/@protobufjs/base64)
  4. A minimal base64 implementation for number arrays.
  5. API
  6. ---
  7. * **base64.length(string: `string`): `number`**<br />
  8. Calculates the byte length of a base64 encoded string.
  9. * **base64.encode(buffer: `Uint8Array`, start: `number`, end: `number`): `string`**<br />
  10. Encodes a buffer to a base64 encoded string.
  11. * **base64.decode(string: `string`, buffer: `Uint8Array`, offset: `number`): `number`**<br />
  12. Decodes a base64 encoded string to a buffer.
  13. **License:** [BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause)