2.0.1 • Published 6 years ago

callable-class v2.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

Callable

NPM

CircleCI

An extendable base class for callable classes, designed to work nicely with Flow.

Type definition:

// @flow
declare class Callable<A, B> extends Function {
  // See https://github.com/facebook/flow/issues/3084
  // (A): B
  $call: A => B;
  constructor(A => B): this;
}

Examples:

Extend Callable with custom methods

// @flow
import Callable from "callable-class";

class Composable<A, B> extends Callable<A, B> {
  andThen(next: B => C): Composable<A, B> {
    return new Composable(x => next(this(x)));
  }
}

const foo = new Composable(x => [...x, 1])
  .andThen(x => [...x, 2])
  .andThen(x => [...x, 3]);

console.log(foo([])); // [1, 2, 3]

Extend Callable with custom fields and constructor

// @flow
import Callable from "callable-class";

class ActionCreator<Type, A, B> extends Callable<A, B> {
  type: string;
  constructor(type: Type, fn: A => B) {
    super(fn);
    this.type = type;
  }
}

const foo = new ActionCreator("foo", x => x + 1);

console.log(foo.type); // "foo"
console.log(foo(0)); // 1
2.0.1

6 years ago

2.0.0

7 years ago

1.0.0

7 years ago