Repository URL to install this package:
Version:
1.2.13 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const stringifyRules = (rules, selector, prefix) => [
rules.reduce((str, partial, index) => str +
// NOTE: This is to not prefix keyframes with the animation name
((index > 0 || !prefix) && selector ? selector : '') +
(partial && Array.isArray(partial)
? partial.join('')
: partial.toString()), ''),
];
exports.default = stringifyRules;
//# sourceMappingURL=stringifyRules.js.map