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.
string-toolkit
Advanced tools
npm i string-toolkit
// Creating a new instance.
const stringTools = new (require('string-toolkit'))();
// Can also be used without a new instance.
const stringTools = require('string-toolkit');
const stringTools = require('string-toolkit');
console.log(stringTools.toProperCase('hey there!'));
toProperCase(string[, boolean])
const output = stringTools.toProperCase('hey there!', true);
console.log(output); // 'Hey There!'
toChunks(string, number)
const output = stringTools.toChunks('hey there!', 3);
console.log(output); // [ 'hey', ' th', 'ere', '!' ]
scramble(string)
const output = stringTools.scramble('hey there!');
console.log(output); // 'rte! ehyhe'
mock(string)
const output = stringTools.mock('hey there!');
console.log(output); // 'HeY ThErE!'
emojify(string)
const output = stringTools.emojify('hey there!');
console.log(output);
// '🇭🇪🇾 🇹🇭🇪🇷🇪❗'
hasCustomEmoji(string)
const output = stringTools.hasCustomEmoji('hey there!');
console.log(output); // false
createProgressBar(number, number[, object])
const output = stringTools.createProgressBar(57, 100, {
elapsedChar: '+',
progressChar: '@',
emptyChar: '~',
barLength: 10
});
console.log(output); // '+++++@~~~~'
toAbbreviation(string)
const output = stringTools.toAbbreviation('hey there!');
console.log(output); // 'ht'
fakeToken()
const output = stringTools.fakeToken();
console.log(output);
// 'NDI0NTYyNzY1NTMzNzQ0MjY3MA==.Cz0j0.Zf6Tfo17wN27N8tnkoG164Q9'
decancer(string)
const output = stringTools.decancer('𝓱𝓮𝔂 𝓽𝓱𝓮𝓻𝓮!');
console.log(output); // 'hey there!'
shorten(string, number[, string])
const output = stringTools.shorten('bruh moment', 4, 'end');
console.log(output); // 'bruhend'
parseOptions(string[])
const str = 'bruh --moment what bro --search --big bruh moment';
const output = stringTools.parseOptions(str.split(' '));
console.log(output);
/*
{
options: {
moment: 'what bro',
big: 'bruh moment'
},
flags: [ 'search' ],
contentNoOptions: 'bruh',
contentNoFlags: 'bruh what bro bruh moment'
}
*/
FAQs
A package containing tools to manipulate a string.
We found that string-toolkit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.