call-spy
TypeScript icon, indicating that this package has built-in type declarations

3.0.1 • Public • Published

callSpy

Tiny function for spying on function calls.

Install

npm install --save call-spy

Usage

import callSpy from 'call-spy';

const [fn, result] = callSpy ( () => 'yay' );

result.called; // false
result.calls; // 0

fn ( 1, 2, 3 ); // 'yay!'

result.called; // true
result.calls; // 1
result.return; // 'yay!'
result.arguments; // [1, 2, 3]

License

MIT © Fabio Spampinato

/call-spy/

    Package Sidebar

    Install

    npm i call-spy

    Weekly Downloads

    19

    Version

    3.0.1

    License

    none

    Unpacked Size

    5.49 kB

    Total Files

    13

    Last publish

    Collaborators

    • fabiospampinato