@vscode/js-debug-browsers
Version:
Browser launch and discovery logic used in VS Code's JavaScript Debugger
20 lines • 602 B
JavaScript
;
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoopFinder = void 0;
/**
* A no-op browser finder used to stub unsupported browsers/platforms (like
* Edge on Linux).
*/
class NoopFinder {
findWhere() {
return Promise.resolve(undefined);
}
findAll() {
return Promise.resolve([]);
}
}
exports.NoopFinder = NoopFinder;
//# sourceMappingURL=noop.js.map