react-flexigrid
Version:
A React table component designed to allow presenting millions of rows of data.
14 lines (13 loc) • 514 B
JavaScript
import getVendorPrefixedName from './getVendorPrefixedName';
export var hasCSSAnimations = function hasCSSAnimations() {
return !!getVendorPrefixedName('animationName');
};
export var hasCSSTransitions = function hasCSSTransitions() {
return !!getVendorPrefixedName('transition');
};
export var hasCSSTransforms = function hasCSSTransforms() {
return !!getVendorPrefixedName('transform');
};
export var hasCSS3DTransforms = function hasCSS3DTransforms() {
return !!getVendorPrefixedName('perspective');
};