UNPKG

221 BJavaScriptView Raw
1'use strict';
2// This file exists to remove the need for Flow's ignore_non_literal_requires option
3
4/**
5 * @param {string} name
6 * @return {any} any module
7 */
8module.exports = function (name) {
9 return require(name);
10};