8 lines
191 B
Go
8 lines
191 B
Go
|
package css
|
||
|
|
||
|
import "github.com/gorilla/css/scanner"
|
||
|
|
||
|
func isNativeNonMachineContent(token *scanner.Token) bool {
|
||
|
return token.Type == scanner.TokenComment || token.Type == scanner.TokenS
|
||
|
}
|