Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
humanization
Advanced tools
humanization
is a library that seeks to simulate human patterns of mistakes when typing text. It can serve as a kind of ergonomic layer for automated chatbots to make them feel more human.
import { humanize } from "humanization";
humanize("All their equipment and instruments are alive.").toString();
// => "All thei5 eqjipmetn and insfrmuents rAe alIve."
import {
humanize,
mistakes,
process,
isProcessedWord,
ProcessedCharacter,
Applicable
} from "humanization";
const [thx] = process("thx");
const print = (input: ProcessedCharacter[]) =>
input.map(({ source }) => source).join("");
const thanks = (input: Applicable): Applicable => {
// Only re-write words that match 'thanks':
if (isProcessedWord(input) && /thanks/i.test(print(input))) {
return [
// Replace entire word with "thx"
...thx,
// Leaves punctuation intact
...input.filter(processedCharacter =>
/[,.?!\-]/.test(processedCharacter.source)
)
];
}
return input;
};
humanize("hey thanks so much!", {
seed: "1234",
mistakes: [
// Mistakes are applied in order from top to bottom
{ apply: mistakes.capitalize, probability: 0.5 },
{ apply: thanks, probability: 1 },
{
apply: input =>
mistakes.repeat(input, {
"!": 1,
x: 1
}),
probability: 1
}
]
}).toString();
// => "hEY thxxxxxxxxx SO mUCh!!!"
yarn install
yarn watch
yarn test
or yarn test --watch
yarn compile
FAQs
To err is human
The npm package humanization receives a total of 0 weekly downloads. As such, humanization popularity was classified as not popular.
We found that humanization 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.