
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@nbsh/buffer-trim
Advanced tools
Removes whitespace and line-terminator characters from buffer edges
buffer-trimRemoves whitespace and line-terminator characters from buffer edges
$ npm i -S @nbsh/buffer-trim
$ yarn add @nbsh/buffer-trim
import { EOL } from 'os';
import { trimBufferStart, trimBufferEnd, trimBuffer } from '@nbsh/buffer-trim';
const trimmable = Buffer.from(` trimme${EOL}`); // Buffer(8) [32, 116, 114, 105, 109, 109, 101, 10]
trimBufferStart(trimmable); // Buffer(7) [116, 114, 105, 109, 109, 101, 10]
trimBufferEnd(trimmable); // Buffer(7) [32, 116, 114, 105, 109, 109, 101]
trimBuffer(trimmable); // Buffer(6) [116, 114, 105, 109, 109, 101]
Whitespace in this context is all the whitespace characters (space, tab, no-break space, etc.) and all the line terminator characters (LF, CR, etc.).
trimBufferStart(buffer: Buffer): BufferThe trimBufferStart() method return the buffer stripped of whitespace from its left end. trimBufferStart() do not affect the value of the buffer itself.
Exactly what String.prototype.trimStart() does, just for buffers.
trimBufferEnd(buffer: Buffer): BufferThe trimBufferEnd() method return the buffer stripped of whitespace from its right end. trimBufferEnd() do not affect the value of the buffer itself.
Exactly what String.prototype.trimEnd() does, just for buffers.
trimBuffer(buffer: Buffer): BufferThe trimBuffer() method return the buffer stripped of whitespace both ends. trimBuffer() do not affect the value of the buffer itself.
Exactly what String.prototype.trim() does, just for buffers.
FAQs
Removes whitespace and line-terminator characters from buffer edges
We found that @nbsh/buffer-trim 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.