@haiku/player
Version:
Haiku Player is a JavaScript library for building user interfaces
10 lines • 398 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function isMutableProperty(property, propertyName) {
return Object.keys(property).length !== 1
|| !property.hasOwnProperty('0')
|| typeof property[0].value === 'function'
|| /^controlFlow/.test(propertyName);
}
exports.default = isMutableProperty;
//# sourceMappingURL=isMutableProperty.js.map