mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
bb06a8426d
refs #9178 - we could now also move any crypto usages to lib/security, but no priority - the main goal is to tidy up our utils folder
15 lines
218 B
JavaScript
15 lines
218 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get url() {
|
|
return require('./url');
|
|
},
|
|
|
|
get tokens() {
|
|
return require('./tokens');
|
|
},
|
|
|
|
get string() {
|
|
return require('./string');
|
|
}
|
|
};
|