Skip to main content
Module

x/postgresjs/src/result.js

Postgres.js - The Fastest full featured PostgreSQL client for Node.js and Deno
Very Popular
Go to Latest
File
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 }}