@testim/chrome-version
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "@testim/chrome-version", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Finds the version of Chrome that is installed on your machine", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -5,9 +5,16 @@ # chrome-version | ||
## Installation | ||
```sh | ||
npm install @testim/chrome-version | ||
``` | ||
## Use | ||
```js | ||
const { getChromeVersion } = require('chrome-version'); | ||
const version = await getChromeVersion(); | ||
console.log(version); | ||
(async () => { | ||
const { getChromeVersion } = require('chrome-version'); | ||
const version = await getChromeVersion(); | ||
console.log(version); | ||
})(); | ||
``` | ||
* If no version of chrome is installed on your machine `getChromeVersion` will return null. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7247
20