functionalscript
Version:
FunctionalScript is a purely functional subset of JavaScript
93 lines (92 loc) • 2.16 kB
TypeScript
declare const _default: {
eq: {
nullish: () => void;
boolean: {
boolean: () => void;
nullish: () => void;
};
number: {
number: () => void;
nullish: () => void;
};
string: {
string: () => void;
number: () => void;
};
bigint: {
bigint: () => void;
};
array: {
array: () => void;
};
object: {
object: () => void;
};
};
unary_plus: () => {
null: () => void;
undefined: () => void;
boolean: {
false: () => void;
true: () => void;
};
number: {
zero: () => void;
positive: () => void;
negative: () => void;
};
string: {
empty: () => void;
zero: () => void;
positive: () => void;
nan: () => void;
};
bigint: {
throw: () => number;
};
array: {
empty: () => void;
single_number: () => void;
single_string: () => void;
multiple: () => void;
};
object: {
empty: () => void;
};
function: () => void;
};
unary_minus: () => {
null: () => void;
undefined: () => void;
boolean: {
false: () => void;
true: () => void;
};
number: {
zero: () => void;
positive: () => void;
negative: () => void;
};
string: {
empty: () => void;
zero: () => void;
positive: () => void;
nan: () => void;
};
bigint: {
positive: () => void;
negative: () => void;
};
array: {
empty: () => void;
single_number: () => void;
single_string: () => void;
multiple: () => void;
};
object: {
empty: () => void;
};
function: () => void;
};
};
export default _default;