Guest User

Untitled

a guest
May 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function func(param1, param2) {}
  2.  
  3. console.log(func.length); // 2
  4.  
  5. var getParamNames = require('get-parameter-names');
  6. console.log(getParamNames(func)); // ['param1', 'param2']
Add Comment
Please, Sign In to add comment