locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
19 lines (18 loc) • 732 B
TypeScript
export { contains } from './contains.ts';
export { endswith } from './endswith.ts';
export { indexof } from './indexof.ts';
export { insert } from './insert.ts';
export { lastindexof } from './lastindexof.ts';
export { length } from './length.ts';
export { padleft } from './padleft.ts';
export { padright } from './padright.ts';
export { remove } from './remove.ts';
export { replace } from './replace.ts';
export { split } from './split.ts';
export { startswith } from './startswith.ts';
export { substring } from './substring.ts';
export { tolower } from './tolower.ts';
export { toupper } from './toupper.ts';
export { trim } from './trim.ts';
export { trimend } from './trimend.ts';
export { trimstart } from './trimstart.ts';