mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-31 12:10:19 -07:00
New: Custom Filtering for UI (#234)
This commit is contained in:
parent
c6873014c7
commit
7354e02bff
154 changed files with 3498 additions and 1370 deletions
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)
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue