0
我創建了一個簡單的Javascript模塊。我想這是提供給CommonJS的實現,AMD實現和全球()允許使用CommonJS,AMD或不使用Javascript模塊(類)
這裏是我的類:
就是我想實現可能嗎?詳盡的谷歌搜索沒有得到任何結果
我創建了一個簡單的Javascript模塊。我想這是提供給CommonJS的實現,AMD實現和全球()允許使用CommonJS,AMD或不使用Javascript模塊(類)
這裏是我的類:
就是我想實現可能嗎?詳盡的谷歌搜索沒有得到任何結果
(function (global, factory) {
if (typeof define === "function" && define.amd) define(factory); //AMD
else if (typeof module === "object") module.exports = factory(); //CommonJS
else global.Geolocation = factory(); // for example browser (global will be window object)
}(this, function() {
var Geolocation = function(callback){
this._latitude = null;
this._longitude = null;
this._accuracy = null;
}
Geolocation.prototype = {
//prototype definitions in here
}
return Geolocation;
}));