UNPKG

@extra-array/drop-right

Version:
6 lines (5 loc) 112 B
'use strict'; function dropRight(x, n = 1) { return x.slice(0, x.length - n); } module.exports = dropRight;