Aetae,
Вот таким образом все получилось:
const createNotEnumerableProperty = () => {
Object.defineProperty(Object.prototype, propertyName, {
get: function() { return result; },
set: function(value) { result = value; },
enumerable: true,
configurable: true });
return propertyName;
};
Спасибо всем огромное!