@adonisjs/lucid
Version:
SQL ORM built on top of Active Record pattern
40 lines (39 loc) • 787 B
JavaScript
/*
* @adonisjs/lucid
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Exposes the API to collect, get and resolve model keys
*/
export class ModelKeys {
keys;
constructor(keys = {}) {
this.keys = keys;
}
/**
* Add a new key
*/
add(key, value) {
this.keys[key] = value;
}
get(key, defaultValue) {
return this.keys[key] || defaultValue;
}
/**
* Resolve key, if unable to resolve, the key will be
* returned as it is.
*/
resolve(key) {
return this.get(key, key);
}
/**
* Return all keys
*/
all() {
return this.keys;
}
}