6 lines
146 B
JavaScript
6 lines
146 B
JavaScript
|
|
(async () => {
|
|
const { getChromeVersion } = require('./index');
|
|
const version = await getChromeVersion();
|
|
console.log(version);
|
|
})(); |