// 在这里编辑全局级自定义脚本模块
// 自定义脚本可以编写任意 JS 内容，未 export 的变量和方法仅在当前文件内可用
// 通过 export 暴露给 pageScript、hooks、actions 或其他 custom 脚本调用
//
// 例如：
//
// export function getCount(params) {
//   console.log('params:', params)
// }
//
// export const name = 'globalCustom'
//
// 调用方式：
// ls.globalCustomScript.目录名.文件名.getCount(params)
// ls.globalCustomScript.目录名.文件名.name
