@nbsh/buffer-trim
Removes whitespace and line-terminator characters from buffer edges
Last updated 5 years ago by rannn505 .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install @nbsh/buffer-trim 
SYNC missed versions from official npm registry.

buffer-trim

Removes whitespace and line-terminator characters from buffer edges

Installation

$ npm i -S @nbsh/buffer-trim
$ yarn add @nbsh/buffer-trim

Usage

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]

API

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): Buffer

The 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): Buffer

The 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): Buffer

The 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.

Current Tags

  • 5.0.0-next.1                                ...           latest (5 years ago)
  • 5.0.0-next.1                                ...           next (5 years ago)

1 Versions

  • 5.0.0-next.1                                ...           5 years ago
Maintainers (1)
Downloads
Total 0
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (0)
None
Dependents (1)

© 2010 - cnpmjs.org x YWFE | Home | YWFE