vega-lite-api
Version:
A JavaScript API for Vega-Lite.
25 lines (20 loc) • 473 B
JavaScript
import {BaseObject, copy, get, init, set} from './__util__.js';
class Repeat extends BaseObject {
constructor(...args) {
super();
init(this);
if (args[0] !== undefined) set(this, "repeat", args[0]);
}
repeat(value) {
if (arguments.length) {
const obj = copy(this);
set(obj, "repeat", value);
return obj;
} else {
return get(this, "repeat");
}
}
}
export function repeat(...args) {
return new Repeat(...args);
}