Spaces:
Runtime error
Runtime error
File size: 204 Bytes
b5ea024 |
1 2 3 4 |
// generate an ID that is, to all intents and purposes, unique
export const id = Math.round(Math.random() * 1e20).toString(36);
export const re = new RegExp(`_${id}_(?:(\\d+)|(AT)|(HASH))_(\\w+)?`, 'g');
|