File size: 112 Bytes
bc20498
 
 
 
1
2
3
4
5
module.exports = function lines(str) {
  if (str == null) return [];
  return String(str).split(/\r\n?|\n/);
};