Security update to Drupal 8.4.6
[yaffs-website] / node_modules / underscore.string / lines.js
1 module.exports = function lines(str) {
2   if (str == null) return [];
3   return String(str).split(/\r\n?|\n/);
4 };