mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-28 08:02:16 +08:00
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
/**
|
|
* Check if a string is a single line (i.e. does not contain
|
|
* any newline characters).
|
|
*
|
|
* @param {string} input
|
|
* @returns {boolean}
|
|
*/
|
|
export default function isSingleLineString(input) {
|
|
return !/[\n\r]/.test(input);
|
|
}
|