UNPKG

kitten-components

Version:
12 lines (10 loc) 356 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var cssSupports = exports.cssSupports = function cssSupports(supportCondition) { if (typeof window === 'undefined' || typeof window.CSS === 'undefined' || typeof window.CSS.supports === 'undefined') { return false; } return window.CSS.supports(supportCondition); };