UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

10 lines (7 loc) 210 B
import { baseSlice } from './_internals/baseSlice.js' export function init(input) { if (typeof input === 'string') { return input.slice(0, -1) } return input.length ? baseSlice(input, 0, -1) : [] }