locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
16 lines (15 loc) • 502 B
JavaScript
export { acos } from "./acos.js";
export { asin } from "./asin.js";
export { atan } from "./atan.js";
export { cbrt } from "./cbrt.js";
export { cos } from "./cos.js";
export { cosh } from "./cosh.js";
export { exp } from "./exp.js";
export { log } from "./log.js";
export { log10 } from "./log10.js";
export { log2 } from "./log2.js";
export { sin } from "./sin.js";
export { sinh } from "./sinh.js";
export { sqrt } from "./sqrt.js";
export { tan } from "./tan.js";
export { tanh } from "./tanh.js";