forked from quic-issues/427e7578-d7bf-49c8-aee9-2dd999e25316
5 lines
195 B
JavaScript
5 lines
195 B
JavaScript
import { webcrypto } from 'node:crypto'
|
|
|
|
export const subtle = /** @type {any} */ (webcrypto).subtle
|
|
export const getRandomValues = /** @type {any} */ (webcrypto).getRandomValues.bind(webcrypto)
|