mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-12-08 04:28:49 +00:00
43 lines
2.0 KiB
JSON
Executable File
43 lines
2.0 KiB
JSON
Executable File
{
|
|
"name": "emoji-strip",
|
|
"description": "Strip emoji from a string in Node.js and browsers.",
|
|
"version": "0.0.3",
|
|
"author": {
|
|
"name": "Nizar Khalife Iglesias",
|
|
"email": "khalifenizar@gmail.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/khalifenizar/emoji-strip/issues"
|
|
},
|
|
"dependencies": {
|
|
"gemoji": "^0.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"tape": "^2.13.3"
|
|
},
|
|
"homepage": "https://github.com/khalifenizar/emoji-strip",
|
|
"keywords": [
|
|
"emoji",
|
|
"strip",
|
|
"remove",
|
|
"emoticons"
|
|
],
|
|
"license": "ISC",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/khalifenizar/emoji-strip.git"
|
|
},
|
|
"scripts": {
|
|
"test": "node tests/emoji-strip.js"
|
|
},
|
|
"readme": "emoji-strip\n===========\n\nStrip emoji from a string in Node.js and browsers.\n\n\nExamples\n--------\n\n```js\nvar emojiStrip = require('emoji-strip'),\n emoji\n;\n\nemoji = 'thumbs-up👍 for staying strong💪 without emoji please🙏';\nconsole.log(emojiStrip(emoji));\n// => \"thumbs-up for staying strong without emoji please\"\n\nemoji = 'dealing with emoji😡 makes me feel like poop💩';\nconsole.log(emojiStrip(emoji));\n// => \"dealing with emoji makes me feel like poop\"\n```\n\n\nAPI\n---\n\n### emojiStrip(str) ###\n\nReturns a copy of `str` with any emoji characters removed.\n\n\nSupported emoji\n---------------\n\nThe `emojiStrip` function is capable of removing any emoji that the [`gemoji`](https://www.npmjs.org/package/gemoji) package supports. You can see the list in `gemoji`'s [Supported Gemoji document](https://github.com/wooorm/gemoji/blob/master/Supported-Gemoji.md).\n\n\nInstall\n-------\n\nInstall with [npm](https://www.npmjs.org/):\n\n```\nnpm install emoji-strip\n```\n\n\nLicense\n-------\n\nISC\n",
|
|
"readmeFilename": "README.md",
|
|
"_id": "emoji-strip@0.0.3",
|
|
"dist": {
|
|
"shasum": "49d513901168fa8d975de538981d532cc0963704"
|
|
},
|
|
"_from": "emoji-strip@",
|
|
"_resolved": "https://registry.npmjs.org/emoji-strip/-/emoji-strip-0.0.3.tgz"
|
|
}
|