13 lines
249 B
JavaScript
13 lines
249 B
JavaScript
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Check if a string is a single line (i.e. does not contain
|
||
|
* any newline characters).
|
||
|
*
|
||
|
* @param {string} input
|
||
|
* @return {boolean}
|
||
|
*/
|
||
|
module.exports = function isSingleLineString(input) {
|
||
|
return !/[\n\r]/.test(input);
|
||
|
};
|