go-eol/consts.go

17 lines
299 B
Go
Raw Normal View History

2023-11-27 14:47:07 +00:00
package eol
2024-02-18 17:09:29 +00:00
import (
"sourcecode.social/reiver/go-eol/cr"
"sourcecode.social/reiver/go-eol/lf"
"sourcecode.social/reiver/go-eol/ls"
"sourcecode.social/reiver/go-eol/nel"
2023-11-27 14:47:07 +00:00
)
const (
2024-02-18 17:09:29 +00:00
LF = string(lf.Rune)
CR = string(cr.Rune)
2023-11-27 14:47:07 +00:00
CRLF = CR+LF
2024-02-18 17:09:29 +00:00
NEL = string(nel.Rune)
LS = string(ls.Rune)
2023-11-27 14:47:07 +00:00
)