UNPKG

presidium-websocket

Version:

Presidium WebSocket client and server for Node.js

16 lines (14 loc) 241 B
/** * @name call * * @docs * ```coffeescript [specscript] * args Array * * call(fn function, thisArg object, ...args) -> any * ``` */ function call(fn, thisArg, ...args) { return fn.call(thisArg, ...args) } module.exports = call