UNPKG

functionalscript

Version:

FunctionalScript is a purely functional subset of JavaScript

13 lines (12 loc) 330 B
import { range } from "./module.f.js"; import * as json from "../../json/module.f.js"; import { sort } from "../../types/object/module.f.js"; const stringify = json.stringify(sort); export default { range: () => { const r = stringify(range("A")); if (r !== '[65,65]') { throw r; } } };