UNPKG

@navikt/aksel

Version:

Aksel command line interface. Codemods and other utilities for Aksel users.

8 lines (7 loc) 266 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getLineTerminator = void 0; const getLineTerminator = (source) => ({ lineTerminator: source.includes("\r\n") ? "\r\n" : "\n", }); exports.getLineTerminator = getLineTerminator;