UNPKG
hackernews-cli-tool
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A Hacker News CLI Tool
github.com/kelvinQiu802/hackernews-cli-tool
kelvinQiu802/hackernews-cli-tool
hackernews-cli-tool
/
bin
/
helper.js
7 lines
(6 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
default
function
getUrlByIndex
(
news, index
) {
if
(news[index].
url
) {
return
news[index].
url
; }
return
`https://news.ycombinator.com/item?id=
${news[index].id}
`
; }