mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
refactor: remove unused file
This commit is contained in:
parent
302d24c932
commit
2618314ccf
1 changed files with 0 additions and 17 deletions
|
@ -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;
|
Loading…
Add table
Add a link
Reference in a new issue