GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
517 B

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