UNPKG

fastman3-dfyjapp-jsbridge

Version:

a jsbridge module for dfyj app

24 lines 549 B
/* * @Author: shenzhiwei * @Date: 2021-04-11 08:10:49 * @Company: orientsec.com.cn * @Description: 工具类 */ /** * 获取绝对路径 * @param url */ var getAbsoluteUrl = function getAbsoluteUrl(url) { var link = document.createElement("a"); link.setAttribute("href", url); return link.href; }; /** * 判断是否为空 * @param str {string} 需要判断的值 * @returns {boolean} */ var isEmpty = function isEmpty(str) { return !(str != null && (!!str.length ? true : str.length > 0)); }; export { getAbsoluteUrl, isEmpty };