1.0.2 ā€¢ Published 2 years ago

retext-no-emojis v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

retext-no-emojis

A retext plugin to discourage the usage of emoji(s).

Install

npm install retext-no-emojis

Use

import { retext } from "retext";
import retextNoEmojis from "./index.js";

retext()
  .use(retextNoEmojis)
  .process("This is some text āœØ with emojis šŸ˜‚ sprinkled in šŸ˜.")
  .then((text) => {
    console.error(text.messages);
  });