Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

13 строки
387 B

  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'];