Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
stylelint
/
lib
/
utils
/
Filename :
hasEmptyLine.js
back
Copy
/* @flow */ "use strict"; /** * Check if a string contains at least one empty line */ module.exports = function(string /*:: ?: string*/) /*: boolean*/ { if (string === "" || string === undefined) return false; return /\n[\r\t ]*\n/.test(string); };