Skip to content

Instantly share code, notes, and snippets.

@agentbellnorm
Last active November 1, 2020 15:19
Show Gist options
  • Save agentbellnorm/ea9e4de496c987a67f79993205c06d10 to your computer and use it in GitHub Desktop.
Save agentbellnorm/ea9e4de496c987a67f79993205c06d10 to your computer and use it in GitHub Desktop.
swap(swapFunction: (state: T, ...rest: any[]): T, ...args: any[]): T {
this.state = swapFunction.apply(null, [this.state, ...args]);
return this.state;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment