browserless 9.9.0 → 9.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/index.js +0 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "browserless",
3
3
  "description": "The headless Chrome/Chromium performance driver for Node.js",
4
4
  "homepage": "https://browserless.js.org",
5
- "version": "9.9.0",
5
+ "version": "9.9.1",
6
6
  "main": "src/index.js",
7
7
  "author": {
8
8
  "email": "hello@microlink.io",
@@ -62,5 +62,5 @@
62
62
  "timeout": "30s",
63
63
  "verbose": true
64
64
  },
65
- "gitHead": "a563e7bc8f30e8d5a2c3d19e8a50ca0bf7bfad3e"
65
+ "gitHead": "74492aaa5c4e5004a32b3b75c62f14efca0a43af"
66
66
  }
package/src/index.js CHANGED
@@ -140,7 +140,6 @@ module.exports = ({ timeout: globalTimeout = 30000, ...launchOpts } = {}) => {
140
140
  }
141
141
  })
142
142
 
143
- console.log({ evaluateTimeout, contextTimeout, globalTimeout })
144
143
  const timeout = evaluateTimeout || contextTimeout || globalTimeout
145
144
 
146
145
  return pTimeout(task(), timeout, () => {