Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
collapse-white-space
Advanced tools
The collapse-white-space npm package is designed to reduce multiple whitespace characters in a string down to a single space, effectively 'collapsing' them. This can be particularly useful for cleaning up strings in web development contexts, such as user input or text content processing, where consistent whitespace handling is desired.
Collapsing multiple whitespace characters
This feature allows you to take a string with multiple spaces, tabs, or other whitespace characters and reduce them to a single space between words or characters. It's particularly useful for text normalization.
"use strict";\nconst collapse = require('collapse-white-space');\nconst text = 'This is a test string.';\nconsole.log(collapse(text)); // 'This is a test string.'
The trim package offers functionality to remove leading and trailing whitespace from a string. While it doesn't collapse internal whitespace, it's often used in conjunction with other methods to clean up strings. It's more focused compared to collapse-white-space, which handles internal whitespace collapsing.
Replace multiple white-space characters with a single space.
npm:
npm install collapse-white-space
Dependencies.
var collapse = require('collapse-white-space');
Collapse white space:
var result = collapse('\tfoo \n\tbar \t\r\nbaz');
Yields:
foo bar baz
collapse(value)
Replace multiple white-space characters with a single space.
value
(string
) — Value with uncollapsed white-space, coerced to string.string
— Value with collapsed white-space.
commaSeparated.stringify(values[, options])
Compile an array of strings to comma-separated tokens. Handles empty items at start or end correctly. Note that it’s not possible to specify initial or final white-space per value.
values
(Array.<string>
) — List of tokens;
options
(Object
, optional):
padLeft
(boolean
, default: true
)
— Whether to pad a space before a token;padRight
(boolean
, default: false
)
— Whether to pad a space after a token.string
— Comma-separated tokens.
FAQs
Collapse white space
The npm package collapse-white-space receives a total of 2,234,598 weekly downloads. As such, collapse-white-space popularity was classified as popular.
We found that collapse-white-space 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.