blob: 40b11cc8a30312fc840ae20cdca02350e4aab28b [file] [log] [blame]
module.exports = function lines(str) {
if (str == null) return [];
return String(str).split(/\r\n?|\n/);
};