UNPKG

517 BMarkdownView Raw
1# @firebase/util
2
3_NOTE: This is specifically tailored for Firebase JS SDK usage, if you are not a
4member of the Firebase team, please avoid using this package_
5
6This is a wrapper of some Webchannel Features for the Firebase JS SDK.
7
8## Usage
9
10**ES Modules**
11
12```javascript
13import { Deferred } from '@firebase/util';
14
15// Do stuff with Deferred or any of the other Utils you import
16```
17
18**CommonJS Modules**
19
20```javascript
21const utils = require('@firebase/util');
22
23// Do stuff with any of the re-exported `utils`
24```
25