diff options
author | kpdecker <kpdecker@gmail.com> | 2015-09-01 17:56:32 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2015-09-01 17:56:32 -0500 |
commit | 0aef72cb8ee694911952d5447b08349a952aee90 (patch) | |
tree | f0c13a154a822519ba2b689ba8edd480953d4f3b /lib/handlebars/utils.js | |
parent | bff5fab8f9d42e21950be00dcf1cedf4dc1a565b (diff) | |
download | handlebars.js-0aef72cb8ee694911952d5447b08349a952aee90.zip handlebars.js-0aef72cb8ee694911952d5447b08349a952aee90.tar.gz handlebars.js-0aef72cb8ee694911952d5447b08349a952aee90.tar.bz2 |
Update to latest eslint
Diffstat (limited to 'lib/handlebars/utils.js')
-rw-r--r-- | lib/handlebars/utils.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/handlebars/utils.js b/lib/handlebars/utils.js index d34646b..1cf7e32 100644 --- a/lib/handlebars/utils.js +++ b/lib/handlebars/utils.js @@ -31,7 +31,7 @@ export let toString = Object.prototype.toString; // Sourced from lodash // https://github.com/bestiejs/lodash/blob/master/LICENSE.txt -/*eslint-disable func-style */ +/* eslint-disable func-style */ let isFunction = function(value) { return typeof value === 'function'; }; @@ -43,7 +43,7 @@ if (isFunction(/x/)) { }; } export {isFunction}; -/*eslint-enable func-style */ +/* eslint-enable func-style */ /* istanbul ignore next */ export const isArray = Array.isArray || function(value) { |