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'); var UNICODE_PUNCT_RE = require('uc.micro/categories/P/regex');
// Currently without astral characters support. // Currently without astral characters support.
function isPunctChar(char) { function isPunctChar(ch) {
return UNICODE_PUNCT_RE.test(char); return UNICODE_PUNCT_RE.test(ch);
} }

Loading…
Cancel
Save