Welcome to mirror list, hosted at ThFree Co, Russian Federation.

array.js « extensions « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc6c130113ddd08ebe3c8b8cdd956b3c3ccc2aca (plain)
1
2
3
4
5
6
7
8
/* eslint-disable no-extend-native, func-names, space-before-function-paren, semi, space-infix-ops, max-len */
Array.prototype.first = function() {
  return this[0];
}

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