Browse Source

fix normalize function name (#538)

pull/562/head
Ted Ge 5 years ago
committed by Vitaly Puzrin
parent
commit
d533c27017
  1. 2
      lib/rules_core/normalize.js

2
lib/rules_core/normalize.js

@ -7,7 +7,7 @@ var NEWLINES_RE = /\r[\n\u0085]?|[\u2424\u2028\u0085]/g;
var NULL_RE = /\u0000/g;
module.exports = function inline(state) {
module.exports = function normalize(state) {
var str;
// Normalize newlines

Loading…
Cancel
Save