functionalscript
Version:
FunctionalScript is a purely functional subset of JavaScript
26 lines (25 loc) • 614 B
TypeScript
declare const _default: {
stringCoercion: {
number: () => void;
bool: () => void;
null: () => void;
undefined: () => void;
bigint: () => void;
array: () => void;
func: () => void;
object: {
norm: () => void;
toString: () => void;
toStringThrow: {
throw: () => void;
};
toStringNotFunc: {
throw: () => void;
};
toStringNonPrimitive: {
throw: () => void;
};
};
};
};
export default _default;