Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
bokeh / server / static / js / lib / models / mappers / mapper.js
Size: Mime:
import { Transform } from "../transforms/transform";
export class Mapper extends Transform {
    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");
    }
}
Mapper.__name__ = "Mapper";
//# sourceMappingURL=mapper.js.map