jq-trim

A trim method that behaves like jquery.trim

Usage no npm install needed!

<script type="module">
  import jqTrim from 'https://cdn.skypack.dev/jq-trim';
</script>

README

NPM Version Build Status

jq-trim

A trim method that behaves like jquery.trim

Install

npm i --save jq-trim

Usage

var trim = require('jq-trim');

describe( 'jq-trim', function () {
  it( 'should trim a string', function () {
    var trim = require( '../' );
    var val = trim( ' a simple string    ' );
    expect( val ).to.equal( 'a simple string' );
  } );
  it( 'should return an empty string if null is passed', function () {
    var trim = require( '../' );
    var val = trim( null );
    expect( val ).to.equal( '' );
  } );
  it( 'should return an empty string if undefined is passed', function () {
    var trim = require( '../' );
    var val = trim( undefined );
    expect( val ).to.equal( '' );
  } );
  it( 'should return the toString() of the passed object if non a string', function () {
    var trim = require( '../' );
    var val = trim( { } );
    expect( val ).to.equal( '[object Object]' );
  } );
} );

License

MIT

Changelog

Changelog