标签: node.js constructor
检查是否存在所需的构造函数参数的惯用方法是什么?
示例:
module.exports = function MyCtorFn (param1, ...) { function init() { if(param1 == null) { throw "param1 not supplied."; } } //... init(); };