UNPKG

@ribajs/core

Version:

Core module of Riba.js

12 lines (10 loc) 248 B
import { getFormatter } from "./get.formatter.js"; /** * Array formatter to get the last element of an array */ export const lastFormatter = { name: "last", read(array: any[]) { return getFormatter.read(array, array.length - 1); }, };