UNPKG

vega-lite-api

Version:
15 lines (11 loc) 265 B
import {BaseObject, init, set} from './__util__.js'; class Not extends BaseObject { constructor(...args) { super(); init(this); if (args[0] !== undefined) set(this, "not", args[0]); } } export function not(...args) { return new Not(...args); }