1.3.3 • Published 7 years ago

trim-whitespace v1.3.3

Weekly downloads
102
License
MIT
Repository
github
Last release
7 years ago

trim whitespace

npm node CircleCI Coveralls styled with prettier

Remove leading and/or trailing spaces and tabs from each line of a string

Install

$ npm install trim-whitespace --save

Usage

Remove leading and trailing spaces and tabs from a string.

const trim = require('trim-whitespace');

trim('\n \tAnakin Skywalker \t\n\t Padme Amidala\t \n');
// \nAnakin Skywalker\nPadme Amidala\n

Remove leading spaces and tabs from a string.

const { leading } = require('trim-whitespace');

leading('\n \tAnakin Skywalker \t\n\t Padme Amidala\t \n');
// \nAnakin Skywalker \t\nPadme Amidala\t \n

Remove trailing spaces and tabs from a string.

const { trailing } = require('trim-whitespace');

trailing('\n \tAnakin Skywalker \t\n\t Padme Amidala\t \n');
// \n \tAnakin Skywalker\n\t Padme Amidala\n

API

const trim = require('trim-whitespace');

trim(str)

Returns a string without any leading or trailing spaces or tabs.

str

  • type: String

The string to trim.

trim.leading(str)

Returns a string without any leading spaces or tabs.

str

  • type: String

The string to trim.

trim.trailing(str)

Returns a string without any trailing spaces or tabs.

str

  • type: String

The string to trim.

1.3.3

7 years ago

1.3.2

7 years ago

1.3.1

8 years ago

1.3.0

8 years ago

1.2.4

8 years ago

1.2.3

8 years ago

1.2.2

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.7

8 years ago

1.1.6

8 years ago

1.1.5

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago