first commit

This commit is contained in:
2025-03-07 22:27:18 +08:00
commit 912da26042
4457 changed files with 306818 additions and 0 deletions

13
node_modules/stylelint/lib/utils/hasEmptyLine.mjs generated vendored Normal file
View File

@@ -0,0 +1,13 @@
const HAS_EMPTY_LINE = /\n[\r\t ]*\n/;
/**
* Check if a string contains at least one empty line
*
* @param {string | undefined} string
* @returns {boolean}
*/
export default function hasEmptyLine(string) {
if (string === '' || string === undefined) return false;
return HAS_EMPTY_LINE.test(string);
}