Skip to main content
Module

x/core_fn/string/mod.ts

A collection of built-in object method and property as currying function
Latest
File
// Copyright 2021-present the Core-fn authors. All rights reserved. MIT license.export { replace } from "./replace.ts";export { startsWith } from "./starts_with.ts";export { endsWith } from "./ends_with.ts";export { trim } from "./trim.ts";export { trimLeft } from "./trim_left.ts";export { trimRight } from "./trim_right.ts";export { toLowerCase } from "./to_lower_case.ts";export { toUpperCase } from "./to_upper_case.ts";export { repeat } from "./repeat.ts";export { trimEnd } from "./trim_end.ts";export { trimStart } from "./trim_start.ts";export { match } from "./match.ts";export { charAt } from "./char_at.ts";