mtl-js-sdk
Version:
ynf-fw-mtl-api
26 lines (23 loc) • 678 B
JavaScript
/*
* @Author: wangyingliang@yonyou.com
* @Date: 2023-11-20 16:04:42
* @LastEditors: wangyingliang wangyingliang@yonyou.com
* @LastEditTime: 2024-07-22 17:12:24
* @FilePath: /mtl-api-project/src/platforms/tt/unique.js
* @Description: H5函数支持入口
* Copyright (c) 2023 by Yonyou, All Rights Reserved.
*/
import unique from '../../common/unique.js'
const upesn = {}
const uniqueObj = unique.upesn
const arrayUpesn = Object.keys(upesn)
const arrayObj = Object.keys(uniqueObj)
arrayObj.forEach(function (key) {
if (!arrayUpesn.find((element) => element == key)) {
upesn[key] = uniqueObj[key]
}
})
let exports = {
upesn,
}
export default exports