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/hasPrefix.mjs generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import { prefixes } from '../reference/prefixes.mjs';
const HAS_PREFIX_REGEX = new RegExp(`(?:${[...prefixes].join('|')})`, 'i');
/**
* Check if a string contains any prefix
*
* @param {string} string
* @returns {boolean}
*/
export default function hasPrefix(string) {
return HAS_PREFIX_REGEX.test(string);
}