jq-trim

0.1.2 • Public • Published

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

Package Sidebar

Install

npm i jq-trim

Weekly Downloads

4,907

Version

0.1.2

License

MIT

Last publish

Collaborators

  • royriojas