| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1× 1× 1× 1× 1× 1× | /** * 主入口,负责提供常用构造函数及工具 * * @file 主入口 * @author Brian Li (lbxxlht@163.com) */ var define = typeof define === 'function' && define.amd ? define : function (factory) { typeof module === 'object' ? (module.exports = factory(require)) : ''; }; define(function (require) { var main = require('./factory'); main.init = require('./init'); return main; }); |