homunculus
Advanced tools
Comparing version 1.4.1 to 1.4.2
{ | ||
"name": "homunculus", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "A lexer&parser by Javascript", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
@@ -70,3 +70,3 @@ var Rule = require('./Rule'); | ||
self.addMatch(new RegMatch(Token.STRING, /^(\\[a-z\d]{4})+/i)); | ||
self.addMatch(new CompleteEqual(Token.IMPORTANT, '!important', null, true)); | ||
self.addMatch(new RegMatch(Token.IMPORTANT, /^!\s*important/i)); | ||
self.addMatch(new RegMatch(Token.HACK, /^![a-z]+/i)); | ||
@@ -73,0 +73,0 @@ self.addMatch(new RegMatch(Token.PSEUDO, /^::?(?:-(?:moz|webkit|ms|o)-)?[a-z]+(?:-[a-z]+)*/i)); |
@@ -70,3 +70,3 @@ define(function(require, exports, module) {var Rule = require('./Rule'); | ||
self.addMatch(new RegMatch(Token.STRING, /^(\\[a-z\d]{4})+/i)); | ||
self.addMatch(new CompleteEqual(Token.IMPORTANT, '!important', null, true)); | ||
self.addMatch(new RegMatch(Token.IMPORTANT, /^!\s*important/i)); | ||
self.addMatch(new RegMatch(Token.HACK, /^![a-z]+/i)); | ||
@@ -73,0 +73,0 @@ self.addMatch(new RegMatch(Token.PSEUDO, /^::?(?:-(?:moz|webkit|ms|o)-)?[a-z]+(?:-[a-z]+)*/i)); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
744811