statem icon indicating copy to clipboard operation
statem copied to clipboard

Next-gen state management based on Harel Statechart and SCXML

Results 1 statem issues
Sort by recently updated
recently updated
newest added

Instead of repeating getters and setters in each State class... ``` class RootState extends State { get storage() { return this.parent.storage; } set storage(value) { this.parent.storage = value; } get...