UNPKG

pimatic

Version:

A home automation server and framework for the Raspberry PI running on node.js

20 lines (14 loc) 546 B
import inherits from 'inherits'; import ColumnBuilder from '../../../schema/columnbuilder'; import { toArray } from 'lodash' function ColumnBuilder_Oracle() { ColumnBuilder.apply(this, arguments); } inherits(ColumnBuilder_Oracle, ColumnBuilder); // checkIn added to the builder to allow the column compiler to change the // order via the modifiers ("check" must be after "default") ColumnBuilder_Oracle.prototype.checkIn = function () { this._modifiers.checkIn = toArray(arguments); return this; }; export default ColumnBuilder_Oracle