Skip to content

Instantly share code, notes, and snippets.

@aleqsio
Created September 4, 2023 08:05
Show Gist options
  • Save aleqsio/aaac9c967aa59f8b18d8bd8b48f9c1c6 to your computer and use it in GitHub Desktop.
Save aleqsio/aaac9c967aa59f8b18d8bd8b48f9c1c6 to your computer and use it in GitHub Desktop.
export function digestString(algorithm, str, options) {
return "";
}
export function getRandomBase64String(length) {
return "";
}
export function getRandomValues(array) {
}
export function digest(algorithm, output, data) {
}
export function randomUUID() {
return null;
}
export async function digestStringAsync(algorithm, str, options) {
return "";
}
export async function getRandomBase64StringAsync(length) {
return "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment