go-eol/consts.go

17 lines
176 B
Go
Raw Normal View History

2023-11-27 14:47:07 +00:00
package eol
const (
lf = '\u000A'
cr = '\u000D'
nl = '\u0085'
ls = '\u2028'
)
const (
LF = string(lf)
CR = string(cr)
CRLF = CR+LF
NL = string(nl)
LS = string(ls)
)