Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
retext-indefinite-article
Advanced tools
retext plugin to check if indefinite articles (`a`, `an`) are used correctly
retext plugin to check a
and an
.
This package is a unified (retext) plugin to check indefinite articles
(a
and an
).
It’s more complex than checking vowels, as it has to do with sounds.
This package knows about how digits are pronounced as well.
You can use this plugin when you’re dealing with content that might contain grammar mistakes, and have authors that can fix that content.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install retext-indefinite-article
In Deno with esm.sh
:
import retextIndefiniteArticle from 'https://esm.sh/retext-indefinite-article@5'
In browsers with esm.sh
:
<script type="module">
import retextIndefiniteArticle from 'https://esm.sh/retext-indefinite-article@5?bundle'
</script>
Say our document example.txt
contains:
He should, a 8-year old boy, should have arrived a hour
ago on an European flight.
An historic event, or a historic event? Both are fine.
…and our module example.js
contains:
import retextEnglish from 'retext-english'
import retextIndefiniteArticle from 'retext-indefinite-article'
import retextStringify from 'retext-stringify'
import {read} from 'to-vfile'
import {unified} from 'unified'
import {reporter} from 'vfile-reporter'
const file = await unified()
.use(retextEnglish)
.use(retextIndefiniteArticle)
.use(retextStringify)
.process(await read('example.txt'))
console.error(reporter(file))
…now running node example.js
yields:
example.txt
1:12-1:13 warning Unexpected article `a` before `8-year`, expected `an` retext-indefinite-article retext-indefinite-article
1:50-1:51 warning Unexpected article `a` before `hour`, expected `an` retext-indefinite-article retext-indefinite-article
2:8-2:10 warning Unexpected article `an` before `European`, expected `a` retext-indefinite-article retext-indefinite-article
⚠ 3 warnings
This package exports no identifiers.
The default export is
retextIndefiniteArticle
.
unified().use(retextIndefiniteArticle)
Check a
and an
.
There are no parameters.
Transform (Transformer
).
Each message is emitted as a VFileMessage
on file
, with
source
set to 'retext-indefinite-article'
, ruleId
to
'retext-indefinite-article'
, actual
to the unexpected word, and expected
to suggestions.
This package is fully typed with TypeScript. It exports no additional types.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
retext-indefinite-article@^5
, compatible with Node.js 16.
retext-redundant-acronyms
— check for redundant acronyms (ATM machine
)retext-repeated-words
— check for for
repeated wordsSee contributing.md
in retextjs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
FAQs
retext plugin to check if indefinite articles (`a`, `an`) are used correctly
The npm package retext-indefinite-article receives a total of 12,893 weekly downloads. As such, retext-indefinite-article popularity was classified as popular.
We found that retext-indefinite-article demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.