go-eol/consts.go

17 lines
189 B
Go
Raw Normal View History

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