remote-darkness/internal/css/util.go

8 lines
191 B
Go
Raw Permalink Normal View History

2018-06-06 18:34:27 +00:00
package css
import "github.com/gorilla/css/scanner"
func isNativeNonMachineContent(token *scanner.Token) bool {
return token.Type == scanner.TokenComment || token.Type == scanner.TokenS
}