Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/css-in-js-utils/lib/
Upload File :
Current File : //etc/kibana/node_modules/css-in-js-utils/lib/unprefixProperty.js

'use strict';

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = unprefixProperty;
var prefixRegex = /^(ms|Webkit|Moz|O)/;

function unprefixProperty(property) {
  var propertyWithoutPrefix = property.replace(prefixRegex, '');
  return propertyWithoutPrefix.charAt(0).toLowerCase() + propertyWithoutPrefix.slice(1);
}
module.exports = exports['default'];