Adding upstream version 1.2.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
eac40c2ddc
commit
e864a6175d
14 changed files with 584 additions and 0 deletions
tests
17
tests/index.ts
Normal file
17
tests/index.ts
Normal file
|
@ -0,0 +1,17 @@
|
|||
import { bind, debounce, memoize } from '..';
|
||||
class C {
|
||||
@bind
|
||||
foo() { }
|
||||
|
||||
@debounce
|
||||
moo() { }
|
||||
|
||||
@debounce(1000)
|
||||
mooWithCustomDelay() { }
|
||||
|
||||
@memoize
|
||||
mem() { }
|
||||
|
||||
@memoize(true)
|
||||
memWithConfig() { }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue