mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-28 08:02:16 +08:00
19 lines
485 B
JavaScript
19 lines
485 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
|
|
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
|
'use strict';
|
|
|
|
const HAS_EMPTY_LINE = /\n[\r\t ]*\n/;
|
|
|
|
/**
|
|
* Check if a string contains at least one empty line
|
|
*
|
|
* @param {string | undefined} string
|
|
* @returns {boolean}
|
|
*/
|
|
function hasEmptyLine(string) {
|
|
if (string === '' || string === undefined) return false;
|
|
|
|
return HAS_EMPTY_LINE.test(string);
|
|
}
|
|
|
|
module.exports = hasEmptyLine;
|