mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
d31f404759
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.
266 B
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.