UNPKG

jodit

Version:

Jodit is awesome and usefully wysiwyg editor with filebrowser

27 lines (24 loc) 748 B
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2020 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ /** * Check if a string is a url * * @method isURL * @param {string} str * @return {boolean} */ export function isURL(str: string): boolean { const pattern = new RegExp( '^(https?:\\/\\/)' + // protocol '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.?)+[a-z]{2,}|' + // domain name '((\\d{1,3}\\.){3}\\d{1,3}))' + // OR ip (v4) address '(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*' + // port and path '(\\?[;&a-z\\d%_.~+=-]*)?' + // query string '(\\#[-a-z\\d_]*)?$', 'i' ); // fragment locator return pattern.test(str); }