UNPKG

@ammarahmed/notifee-react-native

Version:

Notifee - a feature rich notifications library for React Native.

16 lines 497 B
"use strict"; /* * Copyright (c) 2016-present Invertase Limited */ Object.defineProperty(exports, "__esModule", { value: true }); exports.generateId = void 0; const CHARACTERS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; function generateId() { let newId = ''; for (let i = 0; i < 20; i++) { newId += CHARACTERS.charAt(Math.floor(Math.random() * CHARACTERS.length)); } return newId; } exports.generateId = generateId; //# sourceMappingURL=id.js.map