initial commits

master
Charles Iliya Krempeaux 2023-11-27 06:47:07 -08:00
parent d140f4ad6e
commit 1fc5dc884c
1 changed files with 16 additions and 0 deletions

16
consts.go 100644
View File

@ -0,0 +1,16 @@
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)
)