locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
33 lines (32 loc) • 1.1 kB
TypeScript
export { abs } from './abs.ts';
export { add } from './add.ts';
export { and_ } from './and_.ts';
export { concat } from './concat.ts';
export { contains } from './contains.ts';
export { countOf } from './countOf.ts';
export { eq } from './eq.ts';
export { floordiv } from './floordiv.ts';
export { ge } from './ge.ts';
export { getitem } from './getitem.ts';
export { gt } from './gt.ts';
export { indexOf } from './indexOf.ts';
export { inv } from './inv.ts';
export { invert } from './invert.ts';
export { is_ } from './is_.ts';
export { is_not } from './is_not.ts';
export { le } from './le.ts';
export { lshift } from './lshift.ts';
export { lt } from './lt.ts';
export { mod } from './mod.ts';
export { mul } from './mul.ts';
export { ne } from './ne.ts';
export { neg } from './neg.ts';
export { not_ } from './not_.ts';
export { or_ } from './or_.ts';
export { pos } from './pos.ts';
export { pow } from './pow.ts';
export { rshift } from './rshift.ts';
export { sub } from './sub.ts';
export { truediv } from './truediv.ts';
export { truth } from './truth.ts';
export { xor } from './xor.ts';