react-elegant-ui
Version:
Elegant UI components, made by BEM best practices for react
20 lines • 592 B
JavaScript
var __assign = this && this.__assign || function () {
__assign = Object.assign || function (t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
/**
* Return new object which is copy and haven't specified properties
*/
export var excludeProps = function (object, props) {
var newProps = __assign({}, object);
props.forEach(function (name) {
delete newProps[name];
});
return newProps;
};