Sha256: 33175b92a174cdd2740c5347b3c1ece8602ea796f3a4a809bf547a4ca8db0eb4

Contents?: true

Size: 1.4 KB

Versions: 198

Compression:

Stored size: 1.4 KB

Contents

var baseToString = require('./_baseToString'),
    castSlice = require('./_castSlice'),
    charsEndIndex = require('./_charsEndIndex'),
    charsStartIndex = require('./_charsStartIndex'),
    stringToArray = require('./_stringToArray'),
    toString = require('./toString');

/** Used to match leading and trailing whitespace. */
var reTrim = /^\s+|\s+$/g;

/**
 * Removes leading and trailing whitespace or specified characters from `string`.
 *
 * @static
 * @memberOf _
 * @since 3.0.0
 * @category String
 * @param {string} [string=''] The string to trim.
 * @param {string} [chars=whitespace] The characters to trim.
 * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
 * @returns {string} Returns the trimmed string.
 * @example
 *
 * _.trim('  abc  ');
 * // => 'abc'
 *
 * _.trim('-_-abc-_-', '_-');
 * // => 'abc'
 *
 * _.map(['  foo  ', '  bar  '], _.trim);
 * // => ['foo', 'bar']
 */
function trim(string, chars, guard) {
  string = toString(string);
  if (string && (guard || chars === undefined)) {
    return string.replace(reTrim, '');
  }
  if (!string || !(chars = baseToString(chars))) {
    return string;
  }
  var strSymbols = stringToArray(string),
      chrSymbols = stringToArray(chars),
      start = charsStartIndex(strSymbols, chrSymbols),
      end = charsEndIndex(strSymbols, chrSymbols) + 1;

  return castSlice(strSymbols, start, end).join('');
}

module.exports = trim;

Version data entries

198 entries across 176 versions & 25 rubygems

Version Path
trusty-cms-4.2.1 node_modules/lodash/trim.js
trusty-cms-4.2 node_modules/lodash/trim.js
trusty-cms-4.1.9 node_modules/lodash/trim.js
boring_generators-0.6.0 tmp/templates/app_template/node_modules/lodash/trim.js
trusty-cms-4.1.8 node_modules/lodash/trim.js
boring_generators-0.5.0 tmp/templates/app_template/node_modules/lodash/trim.js
tang-0.2.0 spec/tang_app/node_modules/lodash/trim.js
trusty-cms-4.1.7 node_modules/lodash/trim.js
boring_generators-0.4.0 tmp/templates/app_template/node_modules/lodash/trim.js
tang-0.1.0 spec/tang_app/node_modules/lodash/trim.js
tang-0.0.9 spec/tang_app/node_modules/lodash/trim.js
trusty-cms-4.1.6 node_modules/lodash/trim.js
trusty-cms-4.1.5 node_modules/lodash/trim.js
sumomo-0.8.9 data/sumomo/api_modules/node_modules/lodash/trim.js
enju_library-0.3.8 spec/dummy/node_modules/lodash/trim.js
condenser-0.3 lib/condenser/processors/node_modules/lodash/trim.js
sumomo-0.8.8 data/sumomo/api_modules/node_modules/lodash/trim.js
ilog-0.4.1 node_modules/lodash/trim.js
ilog-0.4.0 node_modules/lodash/trim.js
ilog-0.3.3 node_modules/lodash/trim.js