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 37896a8 commit e7eb96bCopy full SHA for e7eb96b
lib/chrome.js
@@ -139,7 +139,7 @@ class Chrome extends EventEmitter {
139
...this.connectOptions,
140
};
141
// fetch the WebSocket debugger URL
142
- const url = await this._fetchDebuggerURL(options);
+ const url = await this._fetchWsDebuggerURL(options);
143
// allow the user to alter the URL
144
const urlObject = parseUrl(url);
145
urlObject.pathname = options.alterPath(urlObject.pathname);
@@ -166,7 +166,7 @@ class Chrome extends EventEmitter {
166
}
167
168
// fetch the WebSocket URL according to 'target'
169
- async _fetchDebuggerURL(options) {
+ async _fetchWsDebuggerURL(options) {
170
const userTarget = this.target;
171
switch (typeof userTarget) {
172
case 'string': {
0 commit comments