UNPKG

@ribajs/core

Version:

Core module of Riba.js

13 lines (11 loc) 286 B
import { Formatter } from "../../types/index.js"; import { capitalize } from "@ribajs/utils/src/type.js"; /** * Uppercases the first letter of a string */ export const capitalizeFormatter: Formatter = { name: "capitalize", read(str: string) { return capitalize(str); }, };