UNPKG

sutando

Version:

A modern Node.js ORM. Makes it enjoyable to interact with your database. Support Mysql, MSSql, MariaDB, Sqlite.

13 lines (11 loc) 249 B
class Scope { constructor() { if (this.constructor === Scope) { throw new Error("Scope cannot be instantiated"); } } apply(builder, model) { throw new Error("apply not implemented"); } } module.exports = Scope