4 lines
115 B
JavaScript
4 lines
115 B
JavaScript
var RE = /^(Webkit|Moz|O|ms)/;
|
|
export default function isPrefixedProperty(property) {
|
|
return RE.test(property);
|
|
} |