s-trimmer
v1.1.1
Published
Format spaces from the left and right end of a string and between strings
Downloads
19
Maintainers
Readme
s-trimmer
About
Format spaces from the left and right end of a string and between strings
Similar Projects
Remove spaces from text:
- trimStart/trimLeft from String object
- trimEnd/trimRight from String object
- trim from String object
- trim by tjholowaychuk
Remove spaces from class names (one of the many features):
How to Install
First, install the library in your project by npm:
$ npm install s-trimmer
Or Yarn:
$ yarn add s-trimmer
Getting Started
Connect libary to project using ES6 import:
import sTrimmer, {
trimStart,
trimLeft,
trimEnd,
trimRight,
trimBetween,
trimCenter,
} from 's-trimmer';
Or CommonJS:
const sTrimmer = require('s-trimmer').default;
const {
trimStart,
trimLeft,
trimEnd,
trimRight,
trimBetween,
trimCenter,
} = require('s-trimmer');
Next use library:
sTrimmer
const value = ' lorem ipsum dolor ';
const formattedValue = sTrimmer(value); // 'lorem ipsum dolor'
trimStart (alias trimLeft)
const value = ' lorem ipsum dolor ';
trimStart(value); // 'lorem ipsum dolor '
trimLeft(value); // 'lorem ipsum dolor '
trimEnd (alias trimRight)
const value = ' lorem ipsum dolor ';
trimEnd(value); // ' lorem ipsum dolor'
trimRight(value); // ' lorem ipsum dolor'
trimBetween (alias trimCenter)
const value = ' lorem ipsum dolor ';
trimBetween(value); // ' lorem ipsum dolor '
trimCenter(value); // ' lorem ipsum dolor '
Params
| Type | Description | | ------ | --------------------- | | string | value to be formatted |
License
This project is licensed under the MIT License © 2020-present Jakub Biesiada