gitlab.com/evatix-go/core@v1.3.55/constants/line_linux.go (about) 1 package constants 2 3 const ( 4 // Reference: https://stackoverflow.com/a/49963413 5 // Operating system based newline, for unix it is "\n" 6 // For Windows Operating system, "\r\n" 7 NewLine = NewLineUnix 8 )