mirror of
https://github.com/samsonjs/batteries.git
synced 2026-03-25 09:15:46 +00:00
10 lines
341 B
JavaScript
10 lines
341 B
JavaScript
var AE = require('./array-ext')
|
|
, FE = require('./file-ext')
|
|
|
|
module.exports = { ArrayExt: AE.ArrayExt
|
|
, FileExt: FE.FileExt
|
|
, extendNative: function() {
|
|
AE.extend(Object.getPrototypeOf(Array))
|
|
FE.extend(require('fs'))
|
|
}
|
|
}
|