Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1010 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 1010 Bytes

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 npm version

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'