您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

20 行
349 B

  1. /*
  2. Copyright 2012-2015, Yahoo Inc.
  3. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
  4. */
  5. var path = require('path');
  6. module.exports = {
  7. create: function (name, cfg) {
  8. cfg = cfg || {};
  9. var Cons = require(path.join(__dirname, 'lib', name));
  10. return new Cons(cfg);
  11. }
  12. };