1.0.0 • Published 8 years ago

no-whitespace v1.0.0

Weekly downloads
80
License
MIT
Repository
github
Last release
8 years ago

no-whitespace Build Status

Remove absolutely all whitespace from a string.

Install

$ npm install --save no-whitespace

Usage

const noWhitespace = require('no-whitespace');

noWhitespace('\n\r\t unicorns & rainbows! amaze! \n\r\t');
//=> 'unicorns&rainbows!amaze!'

API

noWhitespace(input, options)

Returns a string with all whitespace characters removed.

input

Required
Type: string

The string you want to remove all whitespace characters from.

Related

  • selective-whitespace Condense all whitespace in a string, with options to preserve specific whitespace characters.

License

MIT © Michael Wuergler