Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dynamicRequire.js « lib « stylelint « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0926f7389abd2e7bdb396c3e06eb823117687d5 (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';
// This file exists to remove the need for Flow's ignore_non_literal_requires option

/**
 * @param {string} name
 * @return {any} any module
 */
module.exports = function(name) {
	return require(name);
};