std/bytes/README.md
Luca Casonato d31f404759
BREAKING: improve bytes/ module (#2074)
This commit improves the bytes module. The changes:

- indexOf, lastIndexOf, and includes have been renamed to indexOfNeedle,
  lastIndexOfNeedle, and includesNeedle. This is done to differentiate
  them from the similarly called Uint8Array prototype methods.

- JS doc comments have been re-written to be more extensive, and clearer.
  More examples have been added to them.
2022-03-31 17:36:23 +02:00

266 B

Bytes

The bytes module provides helper functions to manipulate Uint8Array byte slices that are not included on the Uint8Array prototype.

View the documentation for details information.