4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-07 13:06:56 +00:00
setup-helm/node_modules/detect-newline
2022-06-27 14:17:15 -04:00
..
index.d.ts v3 new release (#80) 2022-06-27 14:17:15 -04:00
index.js v3 new release (#80) 2022-06-27 14:17:15 -04:00
license v3 new release (#80) 2022-06-27 14:17:15 -04:00
package.json v3 new release (#80) 2022-06-27 14:17:15 -04:00
readme.md v3 new release (#80) 2022-06-27 14:17:15 -04:00

detect-newline Build Status

Detect the dominant newline character of a string

Install

$ npm install detect-newline

Usage

const detectNewline = require('detect-newline');

detectNewline('foo\nbar\nbaz\r\n');
//=> '\n'

API

detectNewline(string)

Returns the detected newline or undefined when no newline character is found.

detectNewline.graceful(unknown)

Returns the detected newline or \n when no newline character is found or the input is not a string.

License

MIT © Sindre Sorhus