Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

isPrefixedProperty.js 262 B

3 anni fa
123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = isPrefixedProperty;
  6. var regex = /^(Webkit|Moz|O|ms)/;
  7. function isPrefixedProperty(property) {
  8. return regex.test(property);
  9. }
  10. module.exports = exports["default"];