You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 lines
292 B

const LINES_RE = /\r\n?|\n/g
/**
* Split a string into a rows array generated from its EOL matches
* @param { string } string [description]
* @returns { Array } array containing all the string rows
*/
export default function splitStringByEOL(string) {
return string.split(LINES_RE)
}