s-trimmer

Format spaces from the left and right end of a string and between strings

Usage no npm install needed!

<script type="module">
  import sTrimmer from 'https://cdn.skypack.dev/s-trimmer';
</script>

README

s-trimmer

NPM version NPM downloads NPM license Codecov Travis Bundle size

About

Format spaces from the left and right end of a string and between strings

Similar Projects

Remove spaces from text:

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