1
0
Fork 0

Adding upstream version 1.2.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-22 16:41:43 +02:00
parent eac40c2ddc
commit e864a6175d
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
14 changed files with 584 additions and 0 deletions

17
tests/index.ts Normal file
View file

@ -0,0 +1,17 @@
import { bind, debounce, memoize } from '..';
class C {
@bind
foo() { }
@debounce
moo() { }
@debounce(1000)
mooWithCustomDelay() { }
@memoize
mem() { }
@memoize(true)
memWithConfig() { }
}