pixel-unit-regex.js 381 B

12345678910111213
  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. module.exports = (unit) =>
  8. new RegExp(
  9. `"[^"]+"|'[^']+'|url\\([^)]+\\)|var\\([^)]+\\)|(\\d*\\.?\\d+)${unit}`,
  10. 'g',
  11. );