time-to-botec/squiggle/node_modules/@rescript/std/lib/js/js_exn.js
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

43 lines
827 B
JavaScript

'use strict';
function raiseError(str) {
throw new Error(str);
}
function raiseEvalError(str) {
throw new EvalError(str);
}
function raiseRangeError(str) {
throw new RangeError(str);
}
function raiseReferenceError(str) {
throw new ReferenceError(str);
}
function raiseSyntaxError(str) {
throw new SyntaxError(str);
}
function raiseTypeError(str) {
throw new TypeError(str);
}
function raiseUriError(str) {
throw new URIError(str);
}
var $$Error$1 = "JsError";
exports.$$Error = $$Error$1;
exports.raiseError = raiseError;
exports.raiseEvalError = raiseEvalError;
exports.raiseRangeError = raiseRangeError;
exports.raiseReferenceError = raiseReferenceError;
exports.raiseSyntaxError = raiseSyntaxError;
exports.raiseTypeError = raiseTypeError;
exports.raiseUriError = raiseUriError;
/* No side effect */