Helpers
Some useful decorators you can use on any method
#
Beforerun before class method before any method
now you can add before the decorator on any method
#
Afterrun after class method before any method
now you can add after the decorator on any method
#
Delaydelay call method by given time in milliseconds
#
Bindbind method to class instance
#
Debouncedebounce method using lodash debounce
#
Throttlethrottle method using lodash debounce
#
Memoizememoize method using lodash debounce
#
Oncemethod will be called max n times and return last call result
#
IntervalsetInterval to method once called