
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
quoted-string-space-split
Advanced tools
npm package that allows to split a string by spaces, but bypassing quoted content
Typescript / Javascript string splitter that allows to split a string by spaces, but bypassing quoted content
Bypassing quoted content (Content and "quoted content") means that you can know what does the user actually wanted to say, in case where you need to split your string by space.
npm install quoted-string-space-split
There are two main methods to use this package :
import splitSpacesExcludeQuotes from 'quoted-string-space-split';
const myArray = splitSpacesExcludeQuotes('Content and "quoted content"');
console.log(myArray); // ["Content", "and", "quoted content"]
import { splitSpacesExcludeQuotesDetailed } from 'quoted-string-space-split';
const myArray = splitSpacesExcludeQuotesDetailed('Content and "quoted content"');
console.log(myArray);
/*
[
{
type: "plain",
value: "Content"
},
{
type: "plain",
value: "and"
},
{
type: "double",
value: "quoted content"
}
]
*/
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
npm package that allows to split a string by spaces, but bypassing quoted content
The npm package quoted-string-space-split receives a total of 422 weekly downloads. As such, quoted-string-space-split popularity was classified as not popular.
We found that quoted-string-space-split 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.