From 4bd3ce58851b0cd332b9d46d56e4e42795636984 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 12 Jan 2015 08:45:35 -0800 Subject: Moved "use strict" to top of modules. --- js/lib/html5-entities.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'js/lib/html5-entities.js') diff --git a/js/lib/html5-entities.js b/js/lib/html5-entities.js index e0d703c..71e9fe6 100644 --- a/js/lib/html5-entities.js +++ b/js/lib/html5-entities.js @@ -1,3 +1,5 @@ +"use strict"; + var fromCodePoint = require('./from-code-point'); var entities = { @@ -2128,7 +2130,6 @@ var entities = { zwnj: 8204 }; var entityToChar = function(m) { - "use strict"; var isNumeric = /^&#/.test(m); var isHex = /^&#[Xx]/.test(m); var uchar; -- cgit v1.2.3