after
|
- |
1 |
should invoke the method after 3 times
|
- |
|
afterAll
|
- |
1 |
should invoke the method after 3 times
|
- |
|
ary
|
- |
1 |
should invoke the method with specified arguments
|
- |
|
attempt
|
- |
1 |
should catch the error and return it
|
- |
|
before
|
- |
1 |
should invoke the method before 3 times
|
- |
|
beforeAll
|
- |
1 |
should invoke the method before 3 times
|
- |
|
bind
|
- |
2 |
should bind the context of the method
|
- |
|
should bind with other decorators
|
- |
|
bindAll
|
- |
2 |
should bind all method to the context
|
- |
|
should bind only specified methods to the context
|
- |
|
multiple decorators
|
- |
3 |
when using multiple instance decorators
|
- |
1 |
should apply both decorators
|
- |
|
when combining proto and instance decorators
|
- |
2 |
should apply both decorators
|
- |
|
when proto is after instance
|
- |
1 |
should only apply the instance decorator
|
- |
|
curry
|
- |
3 |
should curry the method with default arity
|
- |
|
should curry the method with fixed arity
|
- |
|
should retain the class context
|
- |
|
curryAll
|
- |
3 |
should curry the method with default arity
|
- |
|
should curry the method with fixed arity
|
- |
|
should not retain the class context
|
- |
|
curryRight
|
- |
2 |
should curry the method with default arity
|
- |
|
should retain the class context
|
- |
|
curryRightAll
|
- |
1 |
should curry the method with default arity
|
- |
|
debounce
|
- |
3 |
should debounce the method
|
- |
|
should debounce the property setter
|
- |
|
should contain the flush and cancel methods
|
- |
|
debounceAll
|
- |
1 |
should debounce the method across instances
|
- |
|
defer
|
- |
2 |
should defer the method
|
- |
|
should debounce the property setter
|
- |
|
delay
|
- |
2 |
should delay the method
|
- |
|
should debounce the property setter
|
- |
|
flip
|
- |
1 |
should flip the arguments of the function
|
- |
|
flow
|
- |
2 |
should compose the functions
|
- |
|
should compose and assign to the property
|
- |
|
flowRight
|
- |
2 |
should compose the functions
|
- |
|
should compose the property
|
- |
|
memoize
|
- |
5 |
should memoize the function
|
- |
|
with function resolver
|
- |
1 |
should resolve the key
|
- |
|
with string resolver
|
- |
1 |
should resolve the key
|
- |
|
with custom map type
|
- |
1 |
should create the map of type
|
- |
|
with custom cache
|
- |
1 |
should use the provided map
|
- |
|
memoizeAll
|
- |
2 |
should memoize the function
|
- |
|
with function resolver
|
- |
1 |
should resolve the key
|
- |
|
mixin
|
- |
1 |
should mixin the object
|
- |
|
negate
|
- |
1 |
should inverse the result of the function
|
- |
|
once
|
- |
1 |
should invoke the method only once
|
- |
|
overArgs
|
- |
1 |
should transform each argument
|
- |
|
partial
|
- |
1 |
should create a partially applied function
|
- |
|
partialRight
|
- |
1 |
should create a partially applied function
|
- |
|
rearg
|
- |
1 |
should change the order of arguments
|
- |
|
rest
|
- |
1 |
should change the order of arguments
|
- |
|
spread
|
- |
1 |
should spread the arguments
|
- |
|
tap
|
- |
1 |
should return the first argument
|
- |
|
throttle
|
- |
4 |
should throttle the method
|
- |
|
should debounce the property setter
|
- |
|
should debounce the property getter
|
- |
|
should contain the cancel and flush methods
|
- |
|
unary
|
- |
1 |
should only invoke with one argument
|
- |
|
wrap
|
- |
1 |
should wrap the function
|
- |
|