You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

isPrefixedValue.js 280 B

3 年之前
123456789101112
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = isPrefixedValue;
  6. var regex = /-webkit-|-moz-|-ms-/;
  7. function isPrefixedValue(value) {
  8. return typeof value === 'string' && regex.test(value);
  9. }
  10. module.exports = exports['default'];