UNPKG

@ribajs/core

Version:

Core module of Riba.js

13 lines (11 loc) 295 B
import { Formatter } from "../../types/index.js"; /** * Converts a string into uppercase. * @see https://help.shopify.com/themes/liquid/filters/string-filters#upcase */ export const upcaseFormatter: Formatter = { name: "upcase", read(str: string) { return str.toUpperCase(); }, };