UNPKG

@extra-array/take-right

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