Skip to content

Commit 4fb2614

Browse files
MaximDevoirsindresorhus
authored andcommittedNov 13, 2019
Gracefully handle non-string inputs (#9)
1 parent ecf81a3 commit 4fb2614

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed
 

‎index.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ declare const detectNewline: {
1717
/**
1818
Detect the dominant newline character of a string.
1919
20-
@returns Returns detected newline or `\n` when no newline character is found.
20+
@returns The detected newline or `\n` when no newline character is found or the input is not a string.
2121
*/
2222
graceful(string: string): '\r\n' | '\n';
23+
graceful(string?: unknown): '\n';
2324
};
2425

2526
export = detectNewline;

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ const detectNewline = string => {
1818
};
1919

2020
module.exports = detectNewline;
21-
module.exports.graceful = string => detectNewline(string) || '\n';
21+
module.exports.graceful = string => (typeof string === 'string' && detectNewline(string)) || '\n';

‎index.test-d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@ import detectNewline = require('.');
33

44
expectType<'\r\n' | '\n' | undefined>(detectNewline('foo\nbar\nbaz\r\n'));
55
expectType<'\r\n' | '\n'>(detectNewline.graceful('foo\nbar\nbaz\r\n'));
6+
expectType<'\n'>(detectNewline.graceful(null));
7+
expectType<'\n'>(detectNewline.graceful(undefined));
8+
expectType<'\n'>(detectNewline.graceful());
9+
expectType<'\n'>(detectNewline.graceful(1));
10+
expectType<'\n'>(detectNewline.graceful(['foo', 'bar']));

‎readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ detectNewline('foo\nbar\nbaz\r\n');
2626

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

29-
### detectNewline.graceful(string)
29+
### detectNewline.graceful(unknown)
3030

31-
Returns the detected newline or `\n` when no newline character is found.
31+
Returns the detected newline or `\n` when no newline character is found or the input is not a string.
3232

3333

3434
## Related

‎test.js

+10
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,15 @@ test('main', t => {
77
t.is(detectNewline('foo\nbar\nbaz\r\n'), '\n');
88
t.is(detectNewline('foo\nbar\r\n'), '\n');
99
t.is(detectNewline('foo'), undefined);
10+
});
11+
12+
test('graceful', t => {
1013
t.is(detectNewline.graceful('foo'), '\n');
14+
t.is(detectNewline.graceful('foo\r\nbar\r\nbaz\n'), '\r\n');
15+
t.is(detectNewline.graceful(null), '\n');
16+
t.is(detectNewline.graceful(undefined), '\n');
17+
t.is(detectNewline.graceful(), '\n');
18+
t.is(detectNewline.graceful(0), '\n');
19+
t.is(detectNewline.graceful(true), '\n');
20+
t.is(detectNewline.graceful(['foo', 'bar']), '\n');
1121
});

0 commit comments

Comments
 (0)
Please sign in to comment.