summaryrefslogtreecommitdiffstats
path: root/webapp/utils/url.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/utils/url.jsx')
-rw-r--r--webapp/utils/url.jsx29
1 files changed, 0 insertions, 29 deletions
diff --git a/webapp/utils/url.jsx b/webapp/utils/url.jsx
deleted file mode 100644
index f1edf58c1..000000000
--- a/webapp/utils/url.jsx
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {latinise} from 'utils/latinise.jsx';
-
-export function cleanUpUrlable(input) {
- var cleaned = latinise(input);
- cleaned = cleaned.trim().replace(/-/g, ' ').replace(/[^\w\s]/gi, '').toLowerCase().replace(/\s/g, '-');
- cleaned = cleaned.replace(/-{2,}/, '-');
- cleaned = cleaned.replace(/^-+/, '');
- cleaned = cleaned.replace(/-+$/, '');
- return cleaned;
-}
-
-export function getShortenedURL(url = '', getLength = 27) {
- if (url.length > 35) {
- const subLength = getLength - 14;
- return url.substring(0, 10) + '...' + url.substring(url.length - subLength, url.length) + '/';
- }
- return url + '/';
-}
-
-export function getSiteURL() {
- if (window.location.origin) {
- return window.location.origin;
- }
-
- return window.location.protocol + '//' + window.location.hostname + (window.location.port ? ':' + window.location.port : '');
-}