2018-03-19 03:23:05 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
class make {
|
2018-03-19 04:54:40 +00:00
|
|
|
static get number () {
|
|
|
|
return require('./numbers')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get alignment () {
|
|
|
|
return require('./alignment')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get arrays () {
|
|
|
|
return require('./arrays')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get colors () {
|
|
|
|
return require('./colors')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get command () {
|
|
|
|
return require('./command')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get crypto () {
|
|
|
|
return require('./crypto')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get datetime () {
|
|
|
|
return require('./datetime')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get files () {
|
|
|
|
return require('./files')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get font () {
|
|
|
|
return require('./fonts')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get html () {
|
|
|
|
return require('./html')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get mime () {
|
|
|
|
return require('./mime')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get network () {
|
|
|
|
return require('./network')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get shaders () {
|
|
|
|
return require('./shaders')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get style () {
|
|
|
|
return require('./style')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get text () {
|
|
|
|
return require('./text')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get time () {
|
|
|
|
return require('./time')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get typed () {
|
|
|
|
return require('./typed')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get types () {
|
|
|
|
return require('./types')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get unit () {
|
|
|
|
return require('./units')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get uri () {
|
|
|
|
return require('./uri')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
|
2018-03-19 04:54:40 +00:00
|
|
|
static get webgl () {
|
|
|
|
return require('./webgl')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = make
|