UNPKG

toloframework

Version:

Javascript/HTML/CSS compiler for Firefox OS or nodewebkit apps using modules in the nodejs style.

7 lines (6 loc) 280 B
// IE11 doe not support String.toLowerCase(). if (typeof String.toLowerCase !== 'function') { String.toLowerCase = function(v) { return v.toLowerCase(); }; String.toUpperCase = function(v) { return v.toUpperCase(); }; String.trim = function(v) { return v.trim(); }; }