@bokeh/bokehjs
Version:
Interactive, novel data visualization
12 lines • 386 B
JavaScript
import { Transform } from "../transforms/transform";
export class Mapper extends Transform {
static __name__ = "Mapper";
constructor(attrs) {
super(attrs);
}
compute(_x) {
// If it's just a single value, then a mapper doesn't really make sense.
throw new Error("mapping single values is not supported");
}
}
//# sourceMappingURL=mapper.js.map