var take = require('../take'); module.exports = function dropLast(n, xs) { return take(n < xs.length ? xs.length - n : 0, xs); };