Add capacitorjs runtime

This commit is contained in:
olcxja 2026-05-03 17:09:55 +02:00
commit f90c0e6c40
8362 changed files with 1502407 additions and 1 deletions

10
node_modules/@noble/hashes/src/blake2b.ts generated vendored Normal file
View file

@ -0,0 +1,10 @@
/**
* Blake2b hash function. Focuses on 64-bit platforms, but in JS speed different from Blake2s is negligible.
* @module
* @deprecated
*/
import { BLAKE2b as B2B, blake2b as b2b } from './blake2.ts';
/** @deprecated Use import from `noble/hashes/blake2` module */
export const BLAKE2b: typeof B2B = B2B;
/** @deprecated Use import from `noble/hashes/blake2` module */
export const blake2b: typeof b2b = b2b;