pat/utils.go
2017-04-19 19:49:59 +02:00

11 lines
288 B
Go

// Copyright 2016 Martin Hebnes Pedersen (LA5NTA). All rights reserved.
// Use of this source code is governed by the MIT-license that can be
// found in the LICENSE file.
package main
import "unicode"
func SplitFunc(c rune) bool {
return unicode.IsSpace(c) || c == ',' || c == ';'
}