This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/node-preload/preload-path/node-preload.js

12 lines
242 B
JavaScript
Raw Normal View History

'use strict';
const internalPreloadModule = require('../internal-preload-module.js');
const preloadList = require('../preload-list.js');
require('../hook-spawn.js');
preloadList.forEach(file => {
internalPreloadModule.require(file);
});