PHP 7.4.33
Preview: border.js Size: 1.45 KB
/var/www/cookieconsent.bitkit.dk/httpdocs/node_modules/postcss-ordered-values/src/rules/border.js
'use strict';
const { unit, stringify } = require('postcss-value-parser');
const mathFunctions = require('../lib/mathfunctions.js');

// border: <line-width> || <line-style> || <color>
// outline: <outline-color> || <outline-style> || <outline-width>

const borderWidths = new Set(['thin', 'medium', 'thick']);

const borderStyles = new Set([
  'none',
  'auto', // only in outline-style
  'hidden',
  'dotted',
  'dashed',
  'solid',
  'double',
  'groove',
  'ridge',
  'inset',
  'outset',
]);

/**
 * @param {import('postcss-value-parser').ParsedValue} border
 * @return {string}
 */
module.exports = function normalizeBorder(border) {
  const order = { width: '', style: '', color: '' };

  border.walk((node) => {
    const { type, value } = node;
    if (type === 'word') {
      if (borderStyles.has(value.toLowerCase())) {
        order.style = value;
        return false;
      }
      if (borderWidths.has(value.toLowerCase()) || unit(value.toLowerCase())) {
        if (order.width !== '') {
          order.width = `${order.width} ${value}`;
          return false;
        }
        order.width = value;
        return false;
      }
      order.color = value;
      return false;
    }
    if (type === 'function') {
      if (mathFunctions.has(value.toLowerCase())) {
        order.width = stringify(node);
      } else {
        order.color = stringify(node);
      }
      return false;
    }
  });

  return `${order.width} ${order.style} ${order.color}`.trim();
};

Directory Contents

Dirs: 0 × Files: 9
Name Size Perms Modified Actions
4.40 KB lrw-r--r-- 2025-06-16 05:45:38
Edit Download
1.45 KB lrw-r--r-- 2025-06-16 05:45:38
Edit Download
1.77 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
902 B lrw-r--r-- 2025-06-16 05:45:39
Edit Download
710 B lrw-r--r-- 2025-06-16 05:45:39
Edit Download
2.92 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
1.34 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
2.01 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
1.92 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).