Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/bbcode/.build-plugins/web-to-mobile/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/ui/bbcode/.build-plugins/web-to-mobile/fetch-dependencies.js

/**
 * @param content {string}
 * @return {Array<string>}
 */
module.exports = function fetchDependenciesContent(content) {
	if (typeof content === 'string')
	{
		const matches = [...content.matchAll(/require\(['"](.*)['"]\)/g)];

		return matches.map(([, moduleName]) => {
			return moduleName;
		});
	}

	return [];
};