mirror of
https://github.com/samsonjs/batteries.git
synced 2026-03-25 09:15:46 +00:00
add DateExt to index.js
This commit is contained in:
parent
aab79b849f
commit
a74ea00f16
1 changed files with 3 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
|||
var ArrayExt = require('./array-ext')
|
||||
, DateExt = require('./date-ext')
|
||||
, FileExt = require('./file-ext')
|
||||
, MathExt = require('./math-ext')
|
||||
, ObjectExt = require('./object-ext')
|
||||
|
|
@ -9,6 +10,7 @@ var ArrayExt = require('./array-ext')
|
|||
;
|
||||
|
||||
module.exports = { ArrayExt: ArrayExt.ArrayExt
|
||||
, DateExt: DateExt.DateExt
|
||||
, FileExt: FileExt.FileExt
|
||||
, MathExt: MathExt.MathExt
|
||||
, ObjectExt: ObjectExt.ObjectExt
|
||||
|
|
@ -16,6 +18,7 @@ module.exports = { ArrayExt: ArrayExt.ArrayExt
|
|||
, extendNative: function() {
|
||||
// Extend native types
|
||||
ArrayExt.extendNative();
|
||||
DateExt.extendNative();
|
||||
MathExt.extendNative();
|
||||
fuse.extendArray();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue