/**
 * An object representing line endings for different platforms.
 *
 * - `POSIX`: Line ending for POSIX-compliant systems (`\n`).
 * - `WIN32`: Line ending for Windows systems (`\r\n`).
 */
export const LINE_ENDINGS = {
  POSIX: "\n",
  WIN32: "\r\n",
};
