shouldComponentUpdate()

in src/setter/object-setter/index.tsx [131:139]


  shouldComponentUpdate(nextProps: any, nextState: any) {
    if (this.state.descriptor !== nextState.descriptor) {
      return true;
    }
    if (this.props.value !== nextProps.value) {
      return true;
    }
    return false;
  }