Also look for the CodeQL bundle at the custom GitHub AE endpoint.

This commit is contained in:
Chris Gavin
2021-02-11 15:13:22 +00:00
parent 781e3bc540
commit f8c5dacab5
27 changed files with 2159 additions and 3 deletions

2
node_modules/strict-uri-encode/index.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = str => encodeURIComponent(str).replace(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);