Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/file-url/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

30 lines (23 sloc)
684 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const path = require('path'); | |
module.exports = (filePath, options) => { | |
if (typeof filePath !== 'string') { | |
throw new TypeError(`Expected a string, got ${typeof filePath}`); | |
} | |
options = { | |
resolve: true, | |
...options | |
}; | |
let pathName = filePath; | |
if (options.resolve) { | |
pathName = path.resolve(filePath); | |
} | |
pathName = pathName.replace(/\\/g, '/'); | |
// Windows drive letter must be prefixed with a slash | |
if (pathName[0] !== '/') { | |
pathName = `/${pathName}`; | |
} | |
// Escape required characters for path components | |
// See: https://tools.ietf.org/html/rfc3986#section-3.3 | |
return encodeURI(`file://${pathName}`).replace(/[?#]/g, encodeURIComponent); | |
}; |