mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
c5169e23c4
refs #9178
20 lines
289 B
JavaScript
20 lines
289 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get url() {
|
|
return require('./url');
|
|
},
|
|
|
|
get tokens() {
|
|
return require('./tokens');
|
|
},
|
|
|
|
get string() {
|
|
return require('./string');
|
|
},
|
|
|
|
get identifier() {
|
|
return require('./identifier');
|
|
}
|
|
};
|