Merge pull request #1 from rhythm29/rhythm_alphanumeric_name

added alphanumeric and underscore support for type name
This commit is contained in:
rhythm29 2016-04-07 18:59:46 +05:30
commit 47d0f2bd59

View File

@ -446,7 +446,7 @@ function tokenizer(input) {
// ^^^
// Name token
//
var LETTERS = /[a-z]/i;
var LETTERS = /[a-zA-Z_0-9]/;
if (LETTERS.test(char)) {
var value = '';