2021-08-12 11:10:18 +05:30

10 lines
308 B
TypeScript

import { yt_deciphered_data } from "./YouTube/utils/extractor";
let main = async() => {
let time_start = Date.now()
await yt_deciphered_data('https://www.youtube.com/watch?v=jbMHA3P7RzU')
let time_end = Date.now()
console.log(`Time Taken : ${(time_end - time_start)/1000} seconds`)
}
main()