diff options
author | kushalpandya <kushal@gitlab.com> | 2017-06-07 12:59:46 +0530 |
---|---|---|
committer | kushalpandya <kushal@gitlab.com> | 2017-06-07 12:59:46 +0530 |
commit | c3616218aabb1055d0e7da592c3840724a097b51 (patch) | |
tree | 00e5803ee775f4a54077ede69f52a25ffeb9c9f8 /app/assets/javascripts/commons | |
parent | eebd18c3ac6a77e29693c8e1892782acdf20e262 (diff) | |
download | gitlab-ce-c3616218aabb1055d0e7da592c3840724a097b51.tar.gz |
Add Array `findIndex` support33315-es6-findindex-support
Diffstat (limited to 'app/assets/javascripts/commons')
-rw-r--r-- | app/assets/javascripts/commons/polyfills.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/commons/polyfills.js b/app/assets/javascripts/commons/polyfills.js index cb054a2a197..bc3e741f524 100644 --- a/app/assets/javascripts/commons/polyfills.js +++ b/app/assets/javascripts/commons/polyfills.js @@ -1,5 +1,6 @@ // ECMAScript polyfills import 'core-js/fn/array/find'; +import 'core-js/fn/array/find-index'; import 'core-js/fn/array/from'; import 'core-js/fn/array/includes'; import 'core-js/fn/object/assign'; |