Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
444 B
20 lines
444 B
1 year ago
|
var trimmedEndIndex = require('./_trimmedEndIndex');
|
||
|
|
||
|
/** Used to match leading whitespace. */
|
||
|
var reTrimStart = /^\s+/;
|
||
|
|
||
|
/**
|
||
|
* The base implementation of `_.trim`.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {string} string The string to trim.
|
||
|
* @returns {string} Returns the trimmed string.
|
||
|
*/
|
||
|
function baseTrim(string) {
|
||
|
return string
|
||
|
? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '')
|
||
|
: string;
|
||
|
}
|
||
|
|
||
|
module.exports = baseTrim;
|