UNPKG

@ribajs/core

Version:

Core module of Riba.js

13 lines (11 loc) 290 B
import { Formatter } from "../../types/index.js"; /** * Appends characters to a string. * @see https://help.shopify.com/themes/liquid/filters/string-filters#append */ export const appendFormatter: Formatter = { name: "append", read(a: string, b: string) { return a + b; }, };