@typed-decorators/autobind
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

@typed-decorators/autobind

npm version

An @autobind decorator for TypeScript that is created to "do one thing and do it well".

This is an experimental module while the ES/TypeScript decorators are experimental.

Synopsis

import { autobind } from "@typed-decorators/autobind";

class Foo {
  @autobind method() {
    // here `this` is the context even if it is refered as a property
    console.log(this);
  }
}

const foo = new Foo();
const boundMethod = foo.method; // same as foo.method.bind(foo)
boundMethod(); // displays foo

Install

npm install --save '@typed-decorators/autobind'

https://www.npmjs.com/package/@typed-decorators/autobind

Caveats

Decorators in TypeScript (as of v2.8) are experimental as http://www.typescriptlang.org/docs/handbook/decorators.html describes.

Any specification may change without warnings.

See Also

Copyright and Licenses

The license is ISC: https://opensource.org/licenses/ISC

Copyright (c) 2018, FUJI Goro.

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i @typed-decorators/autobind

Weekly Downloads

4,254

Version

0.3.0

License

ISC

Unpacked Size

12.8 kB

Total Files

15

Last publish

Collaborators

  • gfx