cafe-utility
Advanced tools
Comparing version 26.12.0 to 26.13.0
@@ -516,4 +516,6 @@ type Indexable = number | string; | ||
declare function binaryIndexOf(bytes: Uint8Array, value: Uint8Array, start?: number): number; | ||
declare function binaryPad(bytes: Uint8Array, size: number): Uint8Array; | ||
declare function binaryPadToMultiple(bytes: Uint8Array, multiple: number): Uint8Array; | ||
declare function binaryPadStart(bytes: Uint8Array, size: number): Uint8Array; | ||
declare function binaryPadStartToMultiple(bytes: Uint8Array, multiple: number): Uint8Array; | ||
declare function binaryPadEnd(bytes: Uint8Array, size: number): Uint8Array; | ||
declare function binaryPadEndToMultiple(bytes: Uint8Array, multiple: number): Uint8Array; | ||
declare function xorCypher(bytes: Uint8Array, key: Uint8Array): Uint8Array; | ||
@@ -638,4 +640,6 @@ declare function binaryEquals(a: Uint8Array, b: Uint8Array): boolean; | ||
equals: typeof binaryEquals; | ||
pad: typeof binaryPad; | ||
padToMultiple: typeof binaryPadToMultiple; | ||
padStart: typeof binaryPadStart; | ||
padStartToMultiple: typeof binaryPadStartToMultiple; | ||
padEnd: typeof binaryPadEnd; | ||
padEndToMultiple: typeof binaryPadEndToMultiple; | ||
xorCypher: typeof xorCypher; | ||
@@ -642,0 +646,0 @@ }; |
{ | ||
"name": "cafe-utility", | ||
"version": "26.12.0", | ||
"version": "26.13.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is too big to display
148055
4319