13 lines
304 B
JavaScript
13 lines
304 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
/* eslint-env browser */
|
|
|
|
const subtle = crypto.subtle;
|
|
const getRandomValues = crypto.getRandomValues.bind(crypto);
|
|
|
|
exports.getRandomValues = getRandomValues;
|
|
exports.subtle = subtle;
|
|
//# sourceMappingURL=webcrypto.cjs.map
|