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/uri-js/dist/esnext/util.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
36 lines (36 sloc)
1.09 KB
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
export function merge(...sets) { | |
if (sets.length > 1) { | |
sets[0] = sets[0].slice(0, -1); | |
const xl = sets.length - 1; | |
for (let x = 1; x < xl; ++x) { | |
sets[x] = sets[x].slice(1, -1); | |
} | |
sets[xl] = sets[xl].slice(1); | |
return sets.join(''); | |
} | |
else { | |
return sets[0]; | |
} | |
} | |
export function subexp(str) { | |
return "(?:" + str + ")"; | |
} | |
export function typeOf(o) { | |
return o === undefined ? "undefined" : (o === null ? "null" : Object.prototype.toString.call(o).split(" ").pop().split("]").shift().toLowerCase()); | |
} | |
export function toUpperCase(str) { | |
return str.toUpperCase(); | |
} | |
export function toArray(obj) { | |
return obj !== undefined && obj !== null ? (obj instanceof Array ? obj : (typeof obj.length !== "number" || obj.split || obj.setInterval || obj.call ? [obj] : Array.prototype.slice.call(obj))) : []; | |
} | |
export function assign(target, source) { | |
const obj = target; | |
if (source) { | |
for (const key in source) { | |
obj[key] = source[key]; | |
} | |
} | |
return obj; | |
} | |
//# sourceMappingURL=util.js.map |