de/extensions/dataease-extensions-view/view-bubblemap/view-bubblemap-frontend/src/utils/validate.js
2023-08-24 17:34:35 +08:00

16 lines
194 B
JavaScript

/**
* Created by PanJiaChen on 16/11/18.
*/
/**
* @param {string} path
* @returns {Boolean}
*/
export function isExternal(path) {
return /^(https?:|mailto:|tel:)/.test(path)
}