mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-29 12:37:58 +00:00
864efca1e6
* 2.11.3 * Fix lint * Update polkadot-dev-run-test * Adjust jest setupEnv
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
// Copyright 2017-2023 @polkadot/ui authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import nodeCrypto from 'crypto';
|
|
|
|
window.crypto ??= {
|
|
getRandomValues: function (buffer) {
|
|
return nodeCrypto.randomFillSync(buffer);
|
|
}
|
|
};
|