Feature test support for CSS at-rules
Download the development or minified version, or install via NPM:
npm install @ryanmorr/is-at-rule-supported
To use the method, simply provide a string of the CSS at-rule:
import isAtRuleSupported from '@ryanmorr/is-at-rule-supported';
// Check if the @keyframes rule supported
isAtRuleSupported('@keyframes');
// Check if the @supports rule supported
isAtRuleSupported('@supports');
This project is dedicated to the public domain as described by the Unlicense.