summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/extensions/array.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/extensions/array.js')
-rw-r--r--app/assets/javascripts/extensions/array.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/assets/javascripts/extensions/array.js b/app/assets/javascripts/extensions/array.js
deleted file mode 100644
index fc6c130113d..00000000000
--- a/app/assets/javascripts/extensions/array.js
+++ /dev/null
@@ -1,8 +0,0 @@
-/* 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];
-}