initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
2
github/codeql-action-v1/node_modules/convert-to-spaces/dist/index.d.ts
generated
vendored
Normal file
2
github/codeql-action-v1/node_modules/convert-to-spaces/dist/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
declare const convertToSpaces: (input: string, spaces?: number) => string;
|
||||
export default convertToSpaces;
|
||||
4
github/codeql-action-v1/node_modules/convert-to-spaces/dist/index.js
generated
vendored
Normal file
4
github/codeql-action-v1/node_modules/convert-to-spaces/dist/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
const convertToSpaces = (input, spaces = 2) => {
|
||||
return input.replace(/^\t+/gm, $1 => ' '.repeat($1.length * spaces));
|
||||
};
|
||||
export default convertToSpaces;
|
||||
Loading…
Add table
Add a link
Reference in a new issue