@enact/core
Version:
Enact is an open source JavaScript framework containing everything you need to create a fast, scalable mobile or web application.
14 lines (13 loc) • 332 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.addInternalProp = void 0;
var addInternalProp = exports.addInternalProp = function addInternalProp(props, name, value) {
Object.defineProperty(props, name, {
value: value,
enumerable: false,
writable: true
});
return props;
};