()
| 58 | } |
| 59 | |
| 60 | function uuid() { |
| 61 | return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (char) => { |
| 62 | const n = (Math.random() * 16) | 0; |
| 63 | return (char === "x" ? n : (n & 3) | 8).toString(16); |
| 64 | }); |
| 65 | } |
| 66 | |
| 67 | function sortedQuery(data) { |
| 68 | const normalized = {}; |
no outgoing calls
no test coverage detected