@irrelon/forerunnerdb-core
Version:
ForerunnerDB core utilities for operating on JSON data.
76 lines • 1.08 kB
JavaScript
export const data = [{
"_id": 1,
"str": "30489yj340",
"bar": {
"foo": true,
"dt": new Date("2020-01-01T00:00:00Z"),
"name": "Andy"
},
"arr": [{
"goof": false,
"fun": true
}, {
"goof": true,
"fun": true
}]
}, {
"_id": 2,
"str": "30489yj340",
"bar": {
"foo": false,
"dt": new Date("2020-02-01T00:00:00Z"),
"name": "Jim"
},
"arr": [{
"goof": false,
"fun": true
}, {
"goof": true,
"fun": false
}]
}, {
"_id": 3,
"str": "476m3745ny",
"bar": {
"foo": true,
"dt": new Date("2020-03-01T00:00:00Z"),
"name": "Barbara"
},
"arr": [{
"goof": false,
"fun": false
}, {
"goof": false,
"fun": false
}]
}, {
"_id": 4,
"str": "476m3745ny",
"bar": {
"foo": true,
"dt": new Date("2020-04-01T00:00:00Z"),
"name": "Katie"
},
"arr": [{
"goof": false,
"fun": false
}, {
"goof": false,
"fun": true
}]
}, {
"_id": 5,
"str": "q3w6l74nv54",
"bar": {
"foo": true,
"dt": new Date("2020-05-01T00:00:00Z"),
"name": "Amelia"
},
"arr": [{
"goof": true,
"fun": false
}, {
"goof": false,
"fun": false
}]
}];