emotional-emoticons
Version:
Classified facial expression emoticons database with polarity, used for the emotional sentiment analysis package
29 lines • 943 B
JavaScript
module.exports = {
"love":
{ p: +1.00,
e: ["<3", "♥"] },
"grin":
{ p: +1.00,
e: [">:D", ":-D", ":D", "=-D", "=D", "X-D", "x-D", "XD", "xD", "8-D"] },
"taunt":
{ p: +0.75,
e: [">:P", ":-P", ":P", ":-p", ":p", ":-b", ":b", ":c)", ":o)", ":^)"] },
"smile":
{ p: +0.50,
e: [">:)", ":-)", ":)", "=)", "=]", ":]", ":}", ":>", ":3", "8)", "8-)"] },
"wink":
{ p: +0.25,
e: [">;]", ";-)", ";)", ";-]", ";]", ";D", ";^)", "*-)", "*)"] },
"gasp":
{ p: +0.05,
e: [">:o", ":-O", ":O", ":o", ":-o", "o_O", "o.O", "°O°", "°o°"] },
"worry":
{ p: -0.25,
e: [">:/", ":-/", ":/", ":\\", ">:\\", ":-.", ":-s", ":s", ":S", ":-S", ">.>"] },
"frown":
{ p: -0.75,
e: [">:[", ":-(", ":(", "=(", ":-[", ":[", ":{", ":-<", ":c", ":-c", "=/"] },
"cry":
{ p: -1.00,
e: [":'(", ":'''(", ";'("] }
};