optimize paths

This commit is contained in:
Asaki Yuki 2026-02-22 16:04:31 +07:00
parent 85d60e5db1
commit d1a7399e2f
14 changed files with 144113 additions and 19607 deletions

View file

@ -29,3 +29,7 @@ export function isCompileBinding(input: string) {
export function isHasBinding(input: string) {
return /#\w+/.test(input)
}
export function isString(input: string) {
return /^'.+'$/.test(input)
}