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.

unprefixProperty.js 387 B

3 年之前
12345678910111213
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = unprefixProperty;
  6. var prefixRegex = /^(ms|Webkit|Moz|O)/;
  7. function unprefixProperty(property) {
  8. var propertyWithoutPrefix = property.replace(prefixRegex, '');
  9. return propertyWithoutPrefix.charAt(0).toLowerCase() + propertyWithoutPrefix.slice(1);
  10. }
  11. module.exports = exports['default'];