mirror of
https://github.com/strapi/strapi.git
synced 2025-10-12 00:23:19 +00:00
16 lines
241 B
JavaScript
Executable File
16 lines
241 B
JavaScript
Executable File
'use strict';
|
|
|
|
/**
|
|
* `exposeGlobals()`
|
|
*
|
|
* Expose certain global variables.
|
|
*
|
|
* @api private
|
|
*/
|
|
|
|
module.exports = function exposeGlobals() {
|
|
global.async = require('async');
|
|
global._ = require('lodash');
|
|
global.strapi = this;
|
|
};
|