bigml-nodered-core
Version:
BigML bindings for Node-RED
24 lines (22 loc) • 940 B
JavaScript
if(typeof Math.imul == "undefined" || (Math.imul(0xffffffff,5) == 0)) {
Math.imul = function (a, b) {
var ah = (a >>> 16) & 0xffff;
var al = a & 0xffff;
var bh = (b >>> 16) & 0xffff;
var bl = b & 0xffff;
// the shift by 0 fixes the sign on the high part
// the final |0 converts the unsigned value into a signed value
return ((al * bl) + (((ah * bl + al * bh) << 16) >>> 0)|0);
}
}
var path = require("path");
try {
require("source-map-support").install();
} catch(err) {
}
require(path.join(path.resolve("."),"../../modules/bigml-nodered-core/src/","goog","bootstrap","nodejs.js"));
require(path.join(path.resolve("."),"../../modules/bigml-nodered-core/src/","cljs_deps.js"));
goog.global.CLOSURE_UNCOMPILED_DEFINES = {"cljs.core._STAR_target_STAR_":"nodejs"};
goog.require("devtools.preload");
goog.require("bigml_nodered_core.core");
goog.require("cljs.nodejscli");