/opt/canhelp/node_modules/kysely/dist/esm/query-builder
Edit: /opt/canhelp/node_modules/kysely/dist/esm/query-builder/no-result-error.js (384B)
///
export class NoResultError extends Error {
/**
* The operation node tree of the query that was executed.
*/
node;
constructor(node) {
super('no result');
this.node = node;
}
}
export function isNoResultErrorConstructor(fn) {
return Object.prototype.hasOwnProperty.call(fn, 'prototype');
}