@rescript/std
Version:
The motiviation of this repo is that when ReScript users want to share their library with JS users, the JS users don't need have ReScript toolchain installed, this makes sharing code with JS users easier (more details on that topic can be found in our [Ex
53 lines (39 loc) • 647 B
JavaScript
import * as Caml_option from "./caml_option.js";
function test(x) {
return x === undefined;
}
function testAny(x) {
return x === undefined;
}
function getExn(f) {
if (f !== undefined) {
return f;
}
throw new Error("Js.Undefined.getExn");
}
function bind(x, f) {
if (x !== undefined) {
return f(x);
}
}
function iter(x, f) {
if (x !== undefined) {
return f(x);
}
}
function fromOption(x) {
if (x !== undefined) {
return Caml_option.valFromOption(x);
}
}
var from_opt = fromOption;
export {
test ,
testAny ,
getExn ,
bind ,
iter ,
fromOption ,
from_opt ,
}
/* No side effect */