UNPKG

ramda-adjunct

Version:

Ramda Adjunct is the most popular and most comprehensive set of utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.

22 lines (21 loc) 694 B
import { curry, dropLastWhile, join, pipe, split } from 'ramda'; import contained from './contained'; /** * Removes specified characters from the end of a string. * * @func trimCharsEnd * @memberOf RA * @since {@link https://char0n.github.io/ramda-adjunct/2.25.0|v2.25.0} * @category String * @sig String -> String * @param {string} chars The characters to trim * @param {string} value The string to trim * @return {string} Returns the trimmed string. * @example * * RA.trimCharsEnd('_-', '-_-abc-_-'); //=> '-_-abc' */ var trimCharsEnd = curry(function (chars, value) { return pipe(split(''), dropLastWhile(contained(chars)), join(''))(value); }); export default trimCharsEnd;