Skip to content

Commit e7eb96b

Browse files
committed
_fetchDebuggerURL => _fetchWsDebuggerURL
1 parent 37896a8 commit e7eb96b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/chrome.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class Chrome extends EventEmitter {
139139
...this.connectOptions,
140140
};
141141
// fetch the WebSocket debugger URL
142-
const url = await this._fetchDebuggerURL(options);
142+
const url = await this._fetchWsDebuggerURL(options);
143143
// allow the user to alter the URL
144144
const urlObject = parseUrl(url);
145145
urlObject.pathname = options.alterPath(urlObject.pathname);
@@ -166,7 +166,7 @@ class Chrome extends EventEmitter {
166166
}
167167

168168
// fetch the WebSocket URL according to 'target'
169-
async _fetchDebuggerURL(options) {
169+
async _fetchWsDebuggerURL(options) {
170170
const userTarget = this.target;
171171
switch (typeof userTarget) {
172172
case 'string': {

0 commit comments

Comments
 (0)