We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 593be9d commit ca8fc9eCopy full SHA for ca8fc9e
test/test-cjs.js
@@ -0,0 +1,12 @@
1
+const {telegram_scraper} = require('./../dist/cjs/telegram-scraper.js')
2
+
3
+void async function main() {
4
5
+ let telegram_channel_username = 'telegram'
6
7
+ let result = await telegram_scraper(telegram_channel_username)
8
9
+ console.log(result)
10
11
+}()
12
test/test-mjs.js
+import {telegram_scraper} from './../dist/mjs/telegram-scraper.js'
0 commit comments