mattermost-mobile/app/utils/url.js
enahum 069495ecb2 PLT-5676 Validate server URL format (#315)
* PLT-5676 validate server URL format

* changed based on feedback
2017-03-01 11:13:17 -05:00

11 lines
287 B
JavaScript

// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
export function isValidUrl(url) {
const regex = /^https?:\/\//i;
return regex.test(url);
}
export function stripTrailingSlashes(url) {
return url.replace(/\/+$/, '');
}