go-eol/consts.go

17 lines
299 B
Go

package eol
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"
)
const (
LF = string(lf.Rune)
CR = string(cr.Rune)
CRLF = CR+LF
NEL = string(nel.Rune)
LS = string(ls.Rune)
)