mirror of
https://gitee.com/mafgwo/stackedit
synced 2024-11-16 11:42:23 +08:00
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
window.crypto = {
|
|
getRandomValues(array) {
|
|
for (let i = 0; i < array.length; i += 1) {
|
|
array[i] = Math.floor(Math.random() * 1000000);
|
|
}
|
|
},
|
|
};
|