diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-25 14:28:52 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-26 22:06:27 -0500 |
commit | ef833d2bea07cd2e979dd558eaba141f880063cb (patch) | |
tree | 8dfe91d86231fbc9aed7560bd35aabcfd8e34af7 /ext/bg/js/handlebars.js | |
parent | 527595f79bf97bc2d17cb821c8bb6b4e8b6776f9 (diff) |
Use const rather than let where possible
Diffstat (limited to 'ext/bg/js/handlebars.js')
-rw-r--r-- | ext/bg/js/handlebars.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/handlebars.js b/ext/bg/js/handlebars.js index d6307e1d..8f43cf9a 100644 --- a/ext/bg/js/handlebars.js +++ b/ext/bg/js/handlebars.js @@ -89,7 +89,7 @@ function handlebarsRegexReplace(...args) { let value = args[args.length - 1].fn(this); if (args.length >= 3) { try { - let flags = args.length > 3 ? args[2] : 'g'; + const flags = args.length > 3 ? args[2] : 'g'; const regex = new RegExp(args[0], flags); value = value.replace(regex, args[1]); } catch (e) { |