Node.js惯用的构造函数参数检查

时间:2014-02-03 15:50:39

标签: node.js constructor

检查是否存在所需的构造函数参数的惯用方法是什么?

示例:

    module.exports = function MyCtorFn (param1, ...) {

      function init() {
         if(param1 == null) {
           throw "param1 not supplied.";
         }
      }

      //...

      init();
    };

0 个答案:

没有答案