From 0b3a0bd992cb74935887f9a64b3e373717f2f053 Mon Sep 17 00:00:00 2001 From: Michael Cornwell Date: Thu, 23 Nov 2017 11:07:04 -0600 Subject: [PATCH] Fixing eslint issue. --- lms/static/js/ie11_find_array.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/static/js/ie11_find_array.js b/lms/static/js/ie11_find_array.js index a8f7f4be27..67fe97809c 100644 --- a/lms/static/js/ie11_find_array.js +++ b/lms/static/js/ie11_find_array.js @@ -19,7 +19,7 @@ if (!Array.prototype.find) { // 3. If IsCallable(predicate) is false, throw a TypeError exception. if (typeof predicate !== 'function') { - throw new TypeError('predicate must be a function'); + throw new TypeError('predicate must be a function'); } // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.