Added common smileys + some emojis

This commit is contained in:
xdrm-brackets 2017-12-05 22:45:55 +01:00
parent 54a95d481c
commit d61476d302
1 changed files with 18 additions and 0 deletions

View File

@ -58,6 +58,24 @@ export default {
/* (3) Manage emojis
---------------------------------------------------------*/
/* (1) Smileys */
msg = msg.replace(/:D/g, '😃');
msg = msg.replace(/:\)/g, '🙂');
msg = msg.replace(/:B/g, '😎');
msg = msg.replace(/:3/g, '😗');
msg = msg.replace(/;\)/g, '😉');
msg = msg.replace(/:P/g, '😋');
msg = msg.replace(/;P/g, '😜');
msg = msg.replace(/xD/g, '😆');
msg = msg.replace(/:O/ig, '😲');
msg = msg.replace(/:S/g, '😖');
msg = msg.replace(/\^\^/g, '😊');
/* (2) Emojis */
msg = msg.replace(/:poop:/g, '💩');
msg = msg.replace(/:fuck:/g, '🖕');
msg = msg.replace(/\+1/g, '👍');
msg = msg.replace(/-1/g, '👎');
return msg;
}