2021-09-09 20:25:25 +08:00
|
|
|
//go:build darwin
|
2021-05-28 19:34:29 +08:00
|
|
|
|
|
|
|
package encoder
|
|
|
|
|
|
|
|
// OS is the encoding used by the local backend for macOS
|
|
|
|
//
|
|
|
|
// macOS can't store invalid UTF-8, it converts them into %XX encoding
|
|
|
|
const OS = (Base |
|
|
|
|
EncodeInvalidUtf8)
|