Skip to content

Instantly share code, notes, and snippets.

View 6160's full-sized avatar
💭
communicating near me constitutes consent to monitoring

marco vinesi 6160

💭
communicating near me constitutes consent to monitoring
View GitHub Profile
const say = function(param) {
param = param.replace(/[^0-9a-z]/gi, '').split('').join('-');
return function(param2){
param2 = param2.replace(/[^0-9a-z]/gi, '').split('').join('-');
return `${param} ${param2}`;
}
}