react-siema-vf
Version:
ReactSiema is a lightweight carousel plugin for React. It's a wrapper based on decent library [Siema](https://github.com/pawelgrzybek/siema).
16 lines (13 loc) • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function () {
if (typeof document !== 'undefined') {
var transform = document.documentElement.style.transform;
if (typeof transform === 'string') {
return 'transform';
}
return 'WebkitTransform';
}
}();