Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

ryanmorr/is-at-rule-supported

Repository files navigation

isAtRuleSupported

Version Badge Build Status License

Feature test support for CSS at-rules

Install

Download the development or minified version, or install via NPM:

npm install @ryanmorr/is-at-rule-supported

Usage

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');

License

This project is dedicated to the public domain as described by the Unlicense.