UNPKG

@davidcal/fec-raptorq

Version:

Node.js wrapper for RaptorQ forward error correction

12 lines (10 loc) 284 B
import { bind_self } from "./bind_self.js"; import { callable } from "./callable.js"; /** * @stability 3 - stable * * Similar to `callable` but additionally binds the result to itself. */ export const callable_bound = (obj, call) => { return bind_self(callable(obj, call)); };