2.1.4 • Published 1 year ago

@dizmo/functions-deprecated v2.1.4

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

NPM version Build Status Coverage Status

@dizmo/functions-deprecated

A decorator to deprecate class methods (and properties): It takes an optional message (or function) and returns the original method, where a [DEPRECATED] Class.method: message text is printed at most once upon invoking the deprecated method (using console.warn).

Usage

Installation

npm install @dizmo/functions-deprecated --save

Require

import { deprecated } from '@dizmo/functions-deprecated';
import { original } from '@dizmo/functions-deprecated';

Example(s)

class MyClass {
    @deprecated
    method1() { ... }

    @deprecated('message')
    method2() { ... }

    @deprecated((self, key) => 'message')
    method3() { ... }
}

..where self instanceof MyClass and key === 'method3'.

const instance = new MyClass();
original(instance.method).bind(instance)();

..where bind(instance) is required!

class MyClass {
    @deprecated
    static method1() { ... }

    @deprecated('message')
    static method2() { ... }

    @deprecated((self, key) => 'message')
    static method3() { ... }
}

..where self === MyClass and key === 'method3'.

original(MyClass.method).bind(MyClass)();

..where bind(MyClass) is required!

Development

Clean

npm run clean

Build

npm run build

without linting and cleaning:

npm run -- build --no-lint --no-clean

with UMD bundling (incl. minimization):

npm run -- build --prepack

with UMD bundling (excl. minimization):

npm run -- build --prepack --no-minify

Lint

npm run lint

with auto-fixing:

npm run -- lint --fix

Test

npm run test

without linting, cleaning and (re-)building:

npm run -- test --no-lint --no-clean --no-build

Cover

npm run cover

without linting, cleaning and (re-)building:

npm run -- cover --no-lint --no-clean --no-build

Documentation

npm run docs

Publication

npm publish

initially (if public):

npm publish --access=public

Copyright

© 2021 dizmo AG, Switzerland

2.1.4

1 year ago

2.1.3

3 years ago

2.1.2

3 years ago

2.1.0

3 years ago

2.0.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago