blob: 49f19e434daf24332f7b29cabd356075b3a3974f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* A collection of methods for isomorphic manipulation of trickier data types
*
* The goal with these is to make it easier to replace dependencies later that might not play well
* with specific server-like runtimes that expose global Web APIs (CloudFlare Workers, Deno, Bun,
* etc...), while also supporting execution in Node.
*/
export * as isoBase64URL from './isoBase64URL';
export * as isoCBOR from './isoCBOR';
export * as isoCrypto from './isoCrypto';
export * as isoUint8Array from './isoUint8Array';
|