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