func github.com/evanw/esbuild/internal/css_lexer.IsNameStart
7 uses
github.com/evanw/esbuild/internal/css_lexer (current package)
css_lexer.go#L387: if IsNameStart(lexer.codePoint) {
css_lexer.go#L436: if IsNameStart(lexer.codePoint) {
css_lexer.go#L442: if IsNameStart(c) || c == '-' {
css_lexer.go#L458: if IsNameStart(c) {
css_lexer.go#L461: if c, _ := utf8.DecodeRuneInString(text[width:]); IsNameStart(c) || c == '-' {
css_lexer.go#L731: func IsNameStart(c rune) bool {
css_lexer.go#L736: return IsNameStart(c) || (c >= '0' && c <= '9') || c == '-'
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |