Browse Source

Change variable name to remove reserved keyword

pull/160/head
Alf Eaton 9 years ago
parent
commit
0a6ecd942b
  1. 4
      lib/common/utils.js

4
lib/common/utils.js

@ -186,8 +186,8 @@ function isWhiteSpace(code) {
var UNICODE_PUNCT_RE = require('uc.micro/categories/P/regex');
// Currently without astral characters support.
function isPunctChar(char) {
return UNICODE_PUNCT_RE.test(char);
function isPunctChar(ch) {
return UNICODE_PUNCT_RE.test(ch);
}

Loading…
Cancel
Save