1.0.1 • Published 6 years ago

trimer v1.0.1

Weekly downloads
4
License
GPL-3.0-or-later
Repository
github
Last release
6 years ago

trimer

Removes all characters from the left and right end of a string given an array of characters or a string with one character only.

Build Status codecov Codacy Badge

Install

npm install trimer

Usage

With arrays

const trimer = require('trimer')

trimer("  bbbbbtest ////aaaaa", ["/", " ", "a", "b"])
// 'test'

With strings

const trimer = require('trimer')

trimer("/test////", "/")
// 'test'