|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
384 bytes
|
| Line | |
|---|
| 1 | var rest = require('./rest.js');
|
|---|
| 2 |
|
|---|
| 3 | // Get the last element of an array. Passing **n** will return the last N
|
|---|
| 4 | // values in the array.
|
|---|
| 5 | function last(array, n, guard) {
|
|---|
| 6 | if (array == null || array.length < 1) return n == null || guard ? void 0 : [];
|
|---|
| 7 | if (n == null || guard) return array[array.length - 1];
|
|---|
| 8 | return rest(array, Math.max(0, array.length - n));
|
|---|
| 9 | }
|
|---|
| 10 |
|
|---|
| 11 | module.exports = last;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.