Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

retext-repeated-words

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

retext-repeated-words

Check for for repeated words

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6.9K
decreased by-61.52%
Maintainers
1
Weekly downloads
 
Created
Source

retext-repeated-words Build Status Coverage Status

Check for for repeated words with retext.

Installation

npm:

npm install retext-repeated-words

Usage

var retext = require('retext');
var english = require('retext-english');
var repeated = require('retext-repeated-words');
var report = require('vfile-reporter');

retext().use(english).use(repeated).process([
  'Well, it it doesn’t have to to be. Like a fish in the',
  'the sea.'
].join('\n'), function (err, file) {
  console.log(report(err || file));
});

Yields:

   1:7-1:12  warning  Expected `it` once, not twice   retext-repeated-words
  1:26-1:31  warning  Expected `to` once, not twice   retext-repeated-words
   1:51-2:4  warning  Expected `the` once, not twice  retext-repeated-words

⚠ 3 warnings

API

retext().use(repeatedWords)

Check for repeated words.

  • Doesn’t warn for some words which do occur twice (the best exhibition they had had since);
  • Doesn’t warn for initialisms (D. D. will pop up with...);
  • Doesn’t warn for capitalised words (Duran Duran...).

License

MIT © Titus Wormer

Keywords

FAQs

Package last updated on 19 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc