GT2/Ejectable/node_modules/inline-style-prefixer/es/plugins/calc.js

11 lines
366 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
import isPrefixedValue from 'css-in-js-utils/lib/isPrefixedValue';
var prefixes = ['-webkit-', '-moz-', ''];
export default function calc(property, value) {
if (typeof value === 'string' && !isPrefixedValue(value) && value.indexOf('calc(') > -1) {
return prefixes.map(function (prefix) {
return value.replace(/calc\(/g, prefix + 'calc(');
});
}
}