(function (root, factory) {
if (typeof exports === 'object') {
module.exports = factory()
} else if (typeof define === 'function' && define.amd) {
define(factory)
} else {
root.xxx = factory()
}
})(this, function () {
return function(a) {
}
})
网友评论