前端学习笔记
模块化兼容
在开发一些公共插件的时候,可能不知道,将要以何种模块化规范引用,此时我们需要做一些兼容处理,例如:
function supperClass (a, b, c) {
this.a = a;
this.b = b;
this.c = c;
}
if(typeof module === "object" && module && typeof module.exports === "object"){
module.exports = supperClass;
} else {
if (typeof define === 'function' && define.amd) {
define('supperClass', [], function () { return supperClass;});
}
}
if (typeof window === 'object' && typeof window.document === 'object') {
window.supperClass = supperClass;
}
然后我们在引入的时候就可以使用script标签、require()等方式引入。