Node.js examples for String:Split
Split String to lines
String.prototype.splitlines = function(s) { return s.split('\n') }