All Projects → nizaroni → emoji-strip

nizaroni / emoji-strip

Licence: ISC license
Strip emoji from a string in Node.js and browsers.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to emoji-strip

Emoji Mart
One component to pick them all 👊🏼
Stars: ✭ 4,687 (+6320.55%)
Mutual labels:  emoji, emoticons
wink-sentiment
Accurate and fast sentiment scoring of phrases with #hashtags, emoticons :) & emojis 🎉
Stars: ✭ 51 (-30.14%)
Mutual labels:  emoji, emoticons
strip-markdown
plugin remove Markdown formatting
Stars: ✭ 84 (+15.07%)
Mutual labels:  strip, remove
emot
Open source Emoticons and Emoji detection library: emot
Stars: ✭ 178 (+143.84%)
Mutual labels:  emoji, emoticons
editor-ovo
A rich text editor for mobile web. Mixed editing of photos and Emoji 一个适用于移动web的富文本编辑器。照片加emoji的混合编辑
Stars: ✭ 29 (-60.27%)
Mutual labels:  emoji
object.omit
Return a copy of an object without the given keys.
Stars: ✭ 79 (+8.22%)
Mutual labels:  remove
habitipy
Command-line interface to Habitica
Stars: ✭ 47 (-35.62%)
Mutual labels:  emoji
EmojiPicker
This library to show a popover to select emoji for iOS
Stars: ✭ 58 (-20.55%)
Mutual labels:  emoji
loading-indicator
🚦 Simple and customizable command line loading indicator
Stars: ✭ 18 (-75.34%)
Mutual labels:  emoji
QueerCats
A whole bunch of pride flags represented as blobby cat emoji
Stars: ✭ 72 (-1.37%)
Mutual labels:  emoji
icons
a collection of custom icons for use with the notion-enhancer's "icon sets" integration
Stars: ✭ 29 (-60.27%)
Mutual labels:  emoji
slack-emoji-upload
Slack emoji uploader, CLI. single binary, no dependencies. linux, osx, windows.
Stars: ✭ 28 (-61.64%)
Mutual labels:  emoji
ReactButton
Android Library to make it easy to add ReactButton feature in your app with Multi Reactions like Facebook or Linkedin, you can add many reactions as you want, you can also split them into a number of columns, and also customize the colours and text for each reaction
Stars: ✭ 100 (+36.99%)
Mutual labels:  emoji
Spotify-Telegram-Bio-Updater
Spotify Telegram Bio Updater Heroku Integration
Stars: ✭ 26 (-64.38%)
Mutual labels:  emoji
studio-log
👻 A tiny JSON logger with emoji support
Stars: ✭ 39 (-46.58%)
Mutual labels:  emoji
homebridge-magichome-platform
Homebridge Plugin for MagicHome LED Strips with Preset Scene Automation Support (Cycle Color/Fade/Strobe)
Stars: ✭ 46 (-36.99%)
Mutual labels:  strip
country-flag-emoji-json
Country flag emojis in JSON format.
Stars: ✭ 92 (+26.03%)
Mutual labels:  emoji
Emojions
Embeddable Emoji Bar
Stars: ✭ 15 (-79.45%)
Mutual labels:  emoji
winmoji
Emoji lookup for Windows 😉 https://www.winmoji.com https://twitter.com/winmoji
Stars: ✭ 79 (+8.22%)
Mutual labels:  emoji
mr-emoji
Lightweight emoji picker like SLACK
Stars: ✭ 23 (-68.49%)
Mutual labels:  emoji

emoji-strip

Use emoji-regex to Strip emoji from a string in Node.js and browsers.

Examples

var emoji

emoji = 'thumbs-up👍 for staying strong💪 without emoji please🙏'
console.log(emojiStrip(emoji))
// => "thumbs-up for staying strong without emoji please"

emoji = 'dealing with emoji😡 makes me feel like poop💩'
console.log(emojiStrip(emoji))
// => "dealing with emoji makes me feel like poop"

API

emojiStrip(string)

Returns a copy of string with any emoji characters removed.

Supported emoji

The emojiStrip function uses the emoji-regex package behind the scenes. It can remove any of the emoji supported by that package.

Currently, it supports all emoji up to Unicode Version 10 except for emoji sequences.

Install

For Node.js

Install with npm:

npm install --save emoji-strip

Require it in your program:

var emojiStrip = require('emoji-strip')

For browsers

Download one of the versions of emoji-strip.js:

Link it in your HTML:

<script src="emoji-strip.min.js"></script>

License

ISC

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].