firestore-adapter
Advanced tools
Comparing version 1.0.5 to 1.0.6
{ | ||
"name": "firestore-adapter", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Adapter to convert typed Firestore data into a standard format.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -43,1 +43,12 @@ # Firestore Adapter | ||
Import and pass the raw data to the function. | ||
```js | ||
const { convert } = require('firestore-adapter') | ||
const rawData = [{ city: { stringValue: 'WASHINGTON' } }] | ||
const result = convert(rawData) | ||
console.log(result) // => [{ city: 'WASHINGTON' }] | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23065
53