mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
New: Custom Filtering for UI (#234)
This commit is contained in:
6
frontend/src/Utilities/String/generateUUIDv4.js
Normal file
6
frontend/src/Utilities/String/generateUUIDv4.js
Normal file
@@ -0,0 +1,6 @@
|
||||
export default function generateUUIDv4() {
|
||||
return ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, (c) =>
|
||||
// eslint-disable-next-line no-bitwise
|
||||
(c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user