locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
30 lines (29 loc) • 1.2 kB
JavaScript
export { Compare } from "./Compare.js";
export { Contains } from "./Contains.js";
export { ContainsAny } from "./ContainsAny.js";
export { Count } from "./Count.js";
export { Cut } from "./Cut.js";
export { CutPrefix } from "./CutPrefix.js";
export { CutSuffix } from "./CutSuffix.js";
export { EqualFold } from "./EqualFold.js";
export { Fields } from "./Fields.js";
export { HasPrefix } from "./HasPrefix.js";
export { HasSuffix } from "./HasSuffix.js";
export { Index } from "./Index2.js";
export { IndexAny } from "./IndexAny.js";
export { Join } from "./Join.js";
export { LastIndex } from "./LastIndex.js";
export { LastIndexAny } from "./LastIndexAny.js";
export { Repeat } from "./Repeat.js";
export { Replace } from "./Replace.js";
export { ReplaceAll } from "./ReplaceAll.js";
export { Split } from "./Split.js";
export { SplitN } from "./SplitN.js";
export { ToLower } from "./ToLower.js";
export { ToUpper } from "./ToUpper.js";
export { Trim } from "./Trim.js";
export { TrimLeft } from "./TrimLeft.js";
export { TrimPrefix } from "./TrimPrefix.js";
export { TrimRight } from "./TrimRight.js";
export { TrimSpace } from "./TrimSpace.js";
export { TrimSuffix } from "./TrimSuffix.js";