rephrase-js

1.0.1 • Public • Published

Rephrase-js

A simple library to rephrase a text.

npm version License: ISC

npm

npm

Installation

npm install rephrase-js

Usage

const rephrase = require("./index.js").default;
console.log(
  rephrase({
    input:
      "Howdy! I’m glad you could assist me today, but I’m feeling a bit tired and drowsy. I’d appreciate your support before I say goodbye.",
  })
);

Advanced Usage

const rephrase = require("./index.js").default;
const interchangeables = [
  ["hello", "hi", "hey", "howdy", "greetings"],
  ["goodbye", "bye", "see you", "farewell", "later"],
  ["yes", "yeah", "yup", "sure", "ok", "okay"],
  ["no", "nope", "nah", "negative"],
  ["thanks", "thank you", "thx", "appreciate"],
  ["sorry", "apologies", "my bad", "excuse me"],
  ["help", "assist", "support", "guide", "aid"],
  ["love", "like", "adore", "enjoy", "appreciate"],
  ["hate", "dislike", "detest", "abhor", "despise"],
  ["happy", "joyful", "cheerful", "content", "glad"],
  ["sad", "unhappy", "sorrowful", "mournful", "gloomy"],
  ["angry", "mad", "upset", "enraged", "furious"],
  ["tired", "exhausted", "fatigued", "weary", "drained"],
  ["sleepy", "drowsy", "slumberous", "somnolent", "snoozy"],
  ["hungry", "starving", "famished", "ravenous", "peckish"],
  ["thirsty", "dehydrated", "parched", "dry", "waterless"],
  ["hot", "warm", "boiling", "scorching", "sweltering"],
  ["cold", "cool", "chilly", "freezing", "icy"],
  ["beautiful", "pretty", "lovely", "attractive", "gorgeous"],
  ["ugly", "hideous", "unattractive", "unsightly", "grotesque"],
  ["smart", "intelligent", "clever", "bright", "brilliant"],
  ["stupid", "dumb", "idiotic", "foolish", "ignorant"],
  ["rich", "wealthy", "affluent", "prosperous", "well-off"],
  ["poor", "needy", "destitute", "impoverished", "indigent"],
  ["happy", "joyful", "cheerful", "content", "glad"],
];

console.log(
  rephrase({
    input:
      "Howdy! I’m glad you could assist me today, but I’m feeling a bit tired and drowsy. I’d appreciate your support before I say goodbye.",
    interchangeables,
  })
);

Package Sidebar

Install

npm i rephrase-js

Weekly Downloads

0

Version

1.0.1

License

ISC

Unpacked Size

22 kB

Total Files

6

Last publish

Collaborators

  • sharjeelbaig