UNPKG

136 BJavaScriptView Raw
1var RE = /-webkit-|-moz-|-ms-/;
2export default function isPrefixedValue(value) {
3 return typeof value === 'string' && RE.test(value);
4}
\No newline at end of file