UNPKG

boilerplate.js

Version:

Development Tools

10 lines (7 loc) 231 B
/* Converts strings of array to lowercase ['Test', 'hello WORLD'].toLowerCase(); //-> ['test', 'hello world'] */ Array.prototype.toLowerCase = function () { return this.join('|').toLowerCase().split('|'); };