Created
June 28, 2021 18:08
-
-
Save narennaik/f0d8dc2c4f40d9665107276ed7bbb613 to your computer and use it in GitHub Desktop.
get url list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const urlList = domainList.map((item) => { | |
const domain = item.details.name; | |
const httpsUrl = `https://${domain}?callback=true`; | |
return httpsUrl; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment