UNPKG

claire-agent

Version:

A Dialogflow agent for Claire Global

24 lines (22 loc) 804 B
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("./src/goog/bootstrap/nodejs.js"); require("./src/cljs_deps.js"); goog.global.CLOSURE_UNCOMPILED_DEFINES = {"cljs.core._STAR_target_STAR_":"nodejs"}; goog.require("devtools.preload"); goog.require("claire_agent.core"); goog.require("cljs.nodejscli");