Function _extractArgumentsPartFromFunction

  • Helper to extrat the code of the function:

    Example

    function func(betterMakeSure, itWorksWith, longVariables = 'too') {}

    const r = extractArgumentsPartFromFunction(func);

    // => r = (betterMakeSure,itWorksWith,longVariables='too')

    Returns

    Parameters

    • func: any

    Returns string

Generated using TypeDoc