BigW Consortium Gitlab

array.js 147 Bytes
Newer Older
1
/* eslint-disable */
2 3 4 5 6 7
Array.prototype.first = function() {
  return this[0];
}

Array.prototype.last = function() {
  return this[this.length-1];
8
}