mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
204 Bytes
// 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');