UNPKG

339 BMarkdownView Raw
1# Bagubagu Utilities
2
3Common Typescript/Javascript utilities that we use at Bagubagu Studio.
4
5## Install
6
7```bash
8npm install @bagubagu/utils --save
9```
10
11## API
12
13### generatePushId
14
15Generate a firebase like push Id
16
17```typescript
18import { generatePushId } from '@bagubagu/utils';
19
20const pushId = generatePushId();
21console.log(pushId);
22```