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 / core / vectorization.js
Size: Mime:
import { isPlainObject } from "./util/types";
export function isValue(obj) {
    return isPlainObject(obj) && "value" in obj;
}
export function isField(obj) {
    return isPlainObject(obj) && "field" in obj;
}
export function isExpr(obj) {
    return isPlainObject(obj) && "expr" in obj;
}
//# sourceMappingURL=vectorization.js.map