stringify-parameters
Stringifies function's parameters definition. Useful to create automated tasks, intellisense, .
Installation
npm install stringify-parameters
CLI
npm install stringify-parameters -g
npx stringify-parameters --help
Usage
stringifyParameters(fn);
Where fn is a function reference or a function definition stringified (e.g. fn.toString())
const stringifyParameters = ; // Just a function to testconst testFunction = console; // `result` will be: 'a = "z, b = [1,2,3], c, {d,e: {f}, g} = {}'const result = ;