underscore javascript工具庫支援seajs模組化

c3tc3tc3t發表於2014-02-20

underscore是一個很有用的js工具庫,但是好像預設不支援seajs模組化

新建一個檔案例如叫做xx.js 談後,鍵入

define(function(require,exports,module) {

    這裡將underscore原始碼複製進來

});

 

 

這樣在使使用時 

var _ = require('lib/xx');

 console.info(_.VERSION);

 

就可以了,

相關文章