v-wordpress-plugin-updater/node_modules/stylelint/lib/reference/prefixes.mjs
2025-08-14 00:05:37 -04:00

17 lines
348 B
JavaScript

/**
* used by value-no-vendor-prefix and selector-no-vendor-prefix
* i.e. this list is deliberately not exhaustive
*
* @see https://www.w3.org/TR/CSS22/syndata.html#vendor-keyword-history
* @type {ReadonlySet<string>}
*/
export const prefixes = new Set([
'-webkit-',
'-moz-',
'-ms-',
'-o-',
'-xv-',
'-apple-',
'-wap-',
'-khtml-',
]);