Guest User

Untitled

a guest
Sep 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. _.mixin({
  2. body : function(array, fromHead, fromTail) {
  3. fromHead = (_.isUndefined(fromHead)) ? 1 : fromHead;
  4. fromTail = (_.isUndefined(fromTail)) ? 1 : fromTail;
  5. if (array.length < 2) return [];
  6. return array.slice(fromHead, array.length-fromTail-1);
  7. }
  8. });
Add Comment
Please, Sign In to add comment