mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-25 11:02:30 +00:00
chore: update frontend build for v1.1.82 [skip ci]
This commit is contained in:
19
web/admin-spa/node_modules/lodash/_baseTrim.js
generated
vendored
19
web/admin-spa/node_modules/lodash/_baseTrim.js
generated
vendored
@@ -1,19 +0,0 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user