Skip to content

Commit

Permalink
refactor: use convention for chars
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrsh committed Dec 26, 2017
1 parent e620897 commit aac29ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/moon.js
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@
}

// Global Variables/Keywords
var globals = ["NaN", "false", "in", "instance", "m", "null", "staticNodes", "true", "typeof", "undefined"];
var globals = ["NaN", "false", "in", "instance", 'm', "null", "staticNodes", "true", "typeof", "undefined"];

// Void and SVG Elements
var VOID_ELEMENTS = ["area", "base", "br", "command", "embed", "hr", "img", "input", "keygen", "link", "meta", "param", "source", "track", "wbr"];
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const escapeMap = {
}

// Global Variables/Keywords
const globals = ["NaN", "false", "in", "instance", "m", "null", "staticNodes", "true", "typeof", "undefined"];
const globals = ["NaN", "false", "in", "instance", 'm', "null", "staticNodes", "true", "typeof", "undefined"];

// Void and SVG Elements
const VOID_ELEMENTS = ["area", "base", "br", "command", "embed", "hr", "img", "input", "keygen", "link", "meta", "param", "source", "track", "wbr"];
Expand Down

0 comments on commit aac29ee

Please sign in to comment.