jq-trim
v0.1.2
Published
A trim method that behaves like jquery.trim
Downloads
23,029
Maintainers
Readme
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]' );
} );
} );