MCPcopy Create free account
hub / github.com/aiprodcoder/MIXAPI / removeTrailingSlash

Function removeTrailingSlash

web/src/helpers/utils.js:151–158  ·  view source on GitHub ↗
(url)

Source from the content-addressed store, hash-verified

149}
150
151export function removeTrailingSlash(url) {
152 if (!url) return '';
153 if (url.endsWith('/')) {
154 return url.slice(0, -1);
155 } else {
156 return url;
157 }
158}
159
160export function getTodayStartTimestamp() {
161 var now = new Date();

Callers 5

submitWorkerFunction · 0.90
submitServerAddressFunction · 0.90
submitWeChatFunction · 0.90
submitServerAddressFunction · 0.90
submitPayAddressFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected