mirror of
https://github.com/github/codeql-action.git
synced 2025-12-29 02:30:11 +08:00
The [release notes](https://github.com/avajs/ava/releases/tag/v4.3.3) mention compatibility with Node 18.8.
5 lines
158 B
JavaScript
5 lines
158 B
JavaScript
const convertToSpaces = (input, spaces = 2) => {
|
|
return input.replace(/^\t+/gm, $1 => ' '.repeat($1.length * spaces));
|
|
};
|
|
export default convertToSpaces;
|