alm
Version:
The best IDE for TypeScript
11 lines (10 loc) • 306 B
JavaScript
;
/**
* Anything to do with tabs should use this file
*/
Object.defineProperty(exports, "__esModule", { value: true });
/** If no filepath is provided `cwd` is used */
function getUrl(protocol, filePath) {
return protocol + (filePath ? filePath : process.cwd);
}
exports.getUrl = getUrl;