@ammarahmed/notifee-react-native
Version:
Notifee - a feature rich notifications library for React Native.
14 lines (11 loc) • 333 B
text/typescript
/*
* Copyright (c) 2016-present Invertase Limited
*/
const CHARACTERS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
export function generateId(): string {
let newId = '';
for (let i = 0; i < 20; i++) {
newId += CHARACTERS.charAt(Math.floor(Math.random() * CHARACTERS.length));
}
return newId;
}