Spaces:
Runtime error
Runtime error
File size: 416 Bytes
b3b8f74 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | export default class Result extends Array {
constructor() {
super()
Object.defineProperties(this, {
count: { value: null, writable: true },
state: { value: null, writable: true },
command: { value: null, writable: true },
columns: { value: null, writable: true },
statement: { value: null, writable: true }
})
}
static get [Symbol.species]() {
return Array
}
}
|