Skip to content

Instantly share code, notes, and snippets.

View ScottBeeson's full-sized avatar
🕳️

Scott Beeson ScottBeeson

🕳️
  • Springfield, Missouri
View GitHub Profile
function say(a) {
function dashimate(s) {
return s.replace(/[^a-z0-9]/gi,'').split('').join('-');
}
return function(b) {
return dashimate(a) + " " + dashimate(b);
}
}