"use strict";
function last(a) {
return a[a.length - 1];
}
function first(a) {
return a[0];
module.exports = {
last: last,
first: first
};