mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
421 B
18 lines
421 B
10 years ago
|
'use strict';
|
||
|
|
||
|
module.exports = {
|
||
|
global: require('./global'),
|
||
|
|
||
|
array: require('./array'),
|
||
|
boolean: require('./boolean'),
|
||
|
date: require('./date'),
|
||
|
error: require('./error'),
|
||
|
function: require('./function'),
|
||
|
iterable: require('./iterable'),
|
||
|
math: require('./math'),
|
||
|
number: require('./number'),
|
||
|
object: require('./object'),
|
||
|
regExp: require('./reg-exp'),
|
||
|
string: require('./string')
|
||
|
};
|