UNPKG

@ribajs/core

Version:

Core module of Riba.js

12 lines (10 loc) 251 B
import { getFormatter } from "./get.formatter.js"; /** * Array formatter to get the first element of an array */ export const firstFormatter = { name: "first", read(value: any | any[] | string) { return getFormatter.read(value, 0); }, };