aboutsummaryrefslogtreecommitdiff
path: root/ref/store/files/trim.go
blob: 69a851dc1a4ead6970bbfc0852165140ab51214b (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package files

func isRefWhitespace(r rune) bool {
	switch r {
	case ' ', '\t', '\n', '\r', '\v', '\f':
		return true
	default:
		return false
	}
}