UNPKG
emoji-js
Version:
latest (3.8.1)
3.8.1
3.8.0
3.7.0
3.6.0
3.5.0
3.4.1
3.4.0
3.2.2
3.2.1
3.2.0
A JS Emoji conversion library
github.com/iamcal/js-emoji
iamcal/js-emoji
emoji-js
/
lib
/
jquery.emoji.js
10 lines
(9 loc)
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
// A very simple jQuery wrapper for js-emoji
$.fn.
emoji
=
function
(
){
var
emoji =
new
EmojiConvertor
();
return
this
.
each
(
function
(
){ $(
this
).
html
(
function
(
i, oldHtml
){
return
emoji.
replace_colons
(oldHtml); }); }); };