| Current Path : /var/www/homesaver/www/bitrix/js/ui/bbcode/.build-plugins/web-to-mobile/ |
| 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 [];
};