mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
12 lines
160 B
JavaScript
12 lines
160 B
JavaScript
|
|
|
|
export default class Metable{
|
|
|
|
static get modifiers() {
|
|
return {
|
|
whereKey(builder, key) {
|
|
builder.where('key', key);
|
|
},
|
|
};
|
|
}
|
|
} |