
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
string-apostrophes
Advanced tools
Comprehensive, HTML-entities-aware tool to typographically-correct the apostrophes and single/double quotes
Comprehensive, HTML-entities-aware tool to typographically-correct the apostrophes and single/double quotes
This package is pure ESM. If you're not ready yet, install an older version of this program, 1.5.0 (npm i string-apostrophes@1.5.0).
npm i string-apostrophes
import { strict as assert } from "assert";
import { convertOne, convertAll } from "string-apostrophes";
assert.deepEqual(
convertAll("In the '60s, rock 'n' roll", {
convertApostrophes: true,
convertEntities: false,
}),
{
result: "In the ’60s, rock ’n’ roll",
ranges: [
[7, 8, "’"],
[18, 21, "’n’"],
],
},
);
assert.deepEqual(
convertOne("test's", {
from: 4,
to: 5,
convertApostrophes: true,
convertEntities: true,
}),
[[4, 5, "’"]],
);
Please visit codsen.com for a full description of the API. If you’re looking for the Changelog, it’s here.
To report bugs or request features or assistance, raise an issue on GitHub.
MIT License
Copyright © 2010-2025 Roy Revelt and other contributors

FAQs
Comprehensive, HTML-entities-aware tool to typographically-correct the apostrophes and single/double quotes
The npm package string-apostrophes receives a total of 264 weekly downloads. As such, string-apostrophes popularity was classified as not popular.
We found that string-apostrophes demonstrated a healthy version release cadence and project activity because the last version was released less than 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.