Skip to content

Instantly share code, notes, and snippets.

View buitim's full-sized avatar
🛌
i need a nap.

Timothy Bui buitim

🛌
i need a nap.
View GitHub Profile
// @ts-ignore
String.prototype.toProperCase = function () {
return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
};
/* https://stackoverflow.com/a/37897805 */
function contains(target, pattern){
var value = 0;
pattern.forEach(function(word){
value = value + target.includes(word);