UNPKG

271 BJavaScriptView Raw
1/**
2 * Property decorator factory. Sets `configurable` flag of PropertyDescriptor
3 * to given state.
4 *
5 * @param state - true, if propoerty is configurable
6 */
7export const configurable = (state) => function (_, __, descriptor) {
8 descriptor.configurable = state;
9};