Files
play-dl-test/node-youtube-dl/index.ts

10 lines
286 B
TypeScript
Raw Normal View History

2021-08-12 13:28:17 +05:30
import { search } from "./YouTube/";
2021-08-07 15:53:18 +05:30
let main = async() => {
let time_start = Date.now()
2021-08-12 13:28:17 +05:30
await search('https://www.youtube.com/results?search_query=Hello+Neghibour')
let time_end = Date.now()
console.log(`Time Taken : ${(time_end - time_start)/1000} seconds`)
}
main()