MCPcopy Index your code
hub / github.com/NativeScript/firebase / issue105

Method issue105

apps/demo/src/plugin-demos/firebase-database.ts:29–45  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

27 }
28
29 issue105() {
30 var obj = {
31 list: [
32 { propertyA: 'valueA', propertyB: null },
33 { propertyA: 'aaa', propertyB: null },
34 ],
35 };
36 this.database
37 .ref('/issues/105')
38 .set(obj)
39 .then((v) => {
40 console.log('done');
41 })
42 .catch((e) => {
43 console.log('error', e);
44 });
45 }
46
47 issue113() {
48 this.database

Callers

nothing calls this directly

Calls 4

setMethod · 0.65
refMethod · 0.65
logMethod · 0.65
thenMethod · 0.45

Tested by

no test coverage detected