mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 14:43:08 +03:00
c19a0c9942
no issue - support ends today - see https://github.com/nodejs/Release - removed `use strict`
22 lines
341 B
JavaScript
22 lines
341 B
JavaScript
module.exports = {
|
|
get url() {
|
|
return require('./url');
|
|
},
|
|
|
|
get tokens() {
|
|
return require('./tokens');
|
|
},
|
|
|
|
get string() {
|
|
return require('./string');
|
|
},
|
|
|
|
get identifier() {
|
|
return require('./identifier');
|
|
},
|
|
|
|
get password() {
|
|
return require('./password');
|
|
}
|
|
};
|