You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
409 B

  1. // excluding regex trick: http://www.rexegg.com/regex-best-trick.html
  2. // Not anything inside double quotes
  3. // Not anything inside single quotes
  4. // Not anything inside url()
  5. // Any digit followed by px
  6. // !singlequotes|!doublequotes|!url()|pixelunit
  7. function getUnitRegexp(unit) {
  8. return new RegExp('"[^"]+"|\'[^\']+\'|url\\([^\\)]+\\)|(\\d*\\.?\\d+)' + unit, 'g');
  9. }
  10. module.exports = {
  11. getUnitRegexp
  12. };