degrees.js 369 B

12345678910111213141516171819
  1. var ZERO_DEG_PATTERN = /\(0deg\)/g;
  2. var plugin = {
  3. level1: {
  4. value: function degrees(_name, value, options) {
  5. if (!options.compatibility.properties.zeroUnits) {
  6. return value;
  7. }
  8. if (value.indexOf('0deg') == -1) {
  9. return value;
  10. }
  11. return value.replace(ZERO_DEG_PATTERN, '(0)');
  12. }
  13. }
  14. };
  15. module.exports = plugin;