2025-04-22 16:41:56 +02:00
|
|
|
Source: decko
|
|
|
|
Section: web
|
|
|
|
Priority: optional
|
2025-04-22 16:45:21 +02:00
|
|
|
Maintainer: Daniel Baumann <daniel@debian.org>
|
2025-04-22 16:41:56 +02:00
|
|
|
Build-Depends:
|
|
|
|
debhelper-compat (= 13),
|
|
|
|
pkg-js-tools,
|
|
|
|
Rules-Requires-Root: no
|
2025-04-22 16:45:02 +02:00
|
|
|
Standards-Version: 4.7.0
|
2025-04-22 16:41:56 +02:00
|
|
|
Homepage: https://github.com/developit/decko
|
|
|
|
Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/decko
|
|
|
|
Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/decko
|
|
|
|
|
|
|
|
Package: node-decko
|
|
|
|
Section: web
|
|
|
|
Architecture: all
|
|
|
|
Depends:
|
|
|
|
${misc:Depends},
|
|
|
|
Description: useful Javascript decorators
|
|
|
|
Decorators help simplify code by replacing the noise of common patterns with
|
|
|
|
declarative annotations.
|
|
|
|
.
|
|
|
|
Decko establishes 3 standard decorators that are immediately recognizable, so
|
|
|
|
you can avoid creating decorators in your own codebase:
|
|
|
|
.
|
|
|
|
* @bind: make the value of this constant within a method
|
|
|
|
* @debounce: throttle calls to a method
|
|
|
|
* @memoize: cache return values based on arguments
|