refactor: remove unused file

This commit is contained in:
zyachel 2023-01-28 11:36:41 +05:30
parent 302d24c932
commit 2618314ccf

View file

@ -1,17 +0,0 @@
const reformatRelatedUrl = (url) => {
// extract the lang and question properties from url
let lang = url.substring(url.indexOf('://'), url.indexOf('.quora.com'));
let question = url.substring(url.indexOf('quora.com'));
lang = lang.replace('://', '');
question = question.replace('quora.com', '');
if (lang.length <= 1) {
lang = 'en';
}
return `${question}?lang=${lang}`;
};
export default reformatRelatedUrl;