<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">'use strict';
const isCustomProp = require('./isCustomProp');

const globalKeywords = new Set(['inherit', 'initial', 'unset', 'revert']);

/** @type {(prop: import('postcss').Declaration, includeCustomProps?: boolean) =&gt; boolean} */
module.exports = (prop, includeCustomProps = true) =&gt; {
  if (
    !prop.value ||
    (includeCustomProps &amp;&amp; isCustomProp(prop)) ||
    (prop.value &amp;&amp; globalKeywords.has(prop.value.toLowerCase()))
  ) {
    return false;
  }
  return true;
};
</pre></body></html>