UNPKG

debug-server-next

Version:

Dev server for hippy-core.

32 lines (31 loc) 1.28 kB
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /* eslint-disable rulesdir/no_underscored_properties */ import * as Common from '../common/common.js'; import * as Host from '../host/host.js'; export class NodeURL { static patch(object) { process(object, ''); function process(object, path) { if (object.url && NodeURL._isPlatformPath(object.url, Host.Platform.isWin())) { object.url = Common.ParsedURL.ParsedURL.platformPathToURL(object.url); } for (const entry of Object.entries(object)) { const key = entry[0]; const value = entry[1]; const entryPath = path + '.' + key; if (entryPath !== '.result.result.value' && value !== null && typeof value === 'object') { process(value, entryPath); } } } } static _isPlatformPath(fileSystemPath, isWindows) { if (isWindows) { const re = /^([a-z]:[\/\\]|\\\\)/i; return re.test(fileSystemPath); } return fileSystemPath.length ? fileSystemPath[0] === '/' : false; } }