southnote-mini-sdk 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.js +1 -22
- package/assets/file/badwords.js +1 -63008
- package/assets/file/rules.js +1 -38
- package/components/bottomSheet/bottomSheet.js +1 -473
- package/components/experience-item/experience-item.js +1 -105
- package/components/grid-item/grid-item.js +1 -8
- package/components/post-item/post-item.js +1 -1086
- package/components/wiki-renderer/wiki-renderer.js +1 -636
- package/components/wiki-tabs/wiki-tabs.js +1 -52
- package/index.js +1 -49
- package/package.json +2 -22
- package/pages/addGame/addGame.js +1 -454
- package/pages/addSubject/addSubject.js +1 -199
- package/pages/commonLogin/commonLogin.js +1 -269
- package/pages/copyOfficial/copyOfficial.js +1 -25
- package/pages/demo/demo.js +1 -23
- package/pages/game/game.js +1 -1305
- package/pages/home/home.js +1 -665
- package/pages/lottery-winners/lottery-winners.js +1 -60
- package/pages/message/messageCommentsAndAt/messageCommentsAndAt.js +1 -178
- package/pages/message/messageEntire/messageEntire.js +1 -112
- package/pages/message/messageLikeAndCollect/messageLikeAndCollect.js +1 -147
- package/pages/message/messageNewFans/messageNewFans.js +1 -139
- package/pages/officialWebview/officialWebview.js +1 -13
- package/pages/post/post.js +1 -1856
- package/pages/post-editor/post-editor.js +1 -465
- package/pages/postDialog/postDialog.js +1 -560
- package/pages/report-category/report-category.js +1 -29
- package/pages/report-form/report-form.js +1 -65
- package/pages/sevenDaySignDetail/sevenDaySignDetail.js +1 -273
- package/pages/topic/topic.js +1 -266
- package/pages/user/user.js +1 -939
- package/pages/userDatum/userDatum.js +1 -24
- package/pages/userGameLib/userGameLib.js +1 -105
- package/pages/webview/webview.js +1 -25
- package/pages/wheelActivivty/wheelActivivty.js +1 -492
- package/pages/wiki/wiki.js +1 -138
- package/request/JKRequest.js +1 -177
- package/services/home.js +1 -603
- package/utils/auth.js +1 -17
- package/utils/base64.js +1 -67
- package/utils/compressImage.js +1 -41
- package/utils/exp.js +1 -49
- package/utils/formatPost.js +1 -18
- package/utils/parseContent.js +1 -191
- package/utils/query-select.js +1 -9
- package/utils/sensitive.js +1 -82
package/request/JKRequest.js
CHANGED
|
@@ -1,177 +1 @@
|
|
|
1
|
-
export function jkRequest(
|
|
2
|
-
return new Promise((resolve, reject) => {
|
|
3
|
-
wx.request({
|
|
4
|
-
...params,
|
|
5
|
-
success: (res) => {
|
|
6
|
-
resolve(res.data)
|
|
7
|
-
},
|
|
8
|
-
fail: (err) => {
|
|
9
|
-
reject(err)
|
|
10
|
-
}
|
|
11
|
-
})
|
|
12
|
-
})
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
class JKRequest {
|
|
16
|
-
constructor(baseURL) {
|
|
17
|
-
this.baseURL = baseURL
|
|
18
|
-
}
|
|
19
|
-
request(params) {
|
|
20
|
-
let {
|
|
21
|
-
url,
|
|
22
|
-
data = {},
|
|
23
|
-
showLoading = false
|
|
24
|
-
} = params;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
// 当接口为 passwdLogin 时,改用另一套域名
|
|
28
|
-
if (url.includes("passwdLogin") || url.includes("phoneLogin")) {
|
|
29
|
-
url = "https://usercenter.whalegame.cn/api/account/" + url
|
|
30
|
-
} else if (url.includes("sendSMS")) {
|
|
31
|
-
url = "https://usercenter.whalegame.cn/api/" + url
|
|
32
|
-
} else {
|
|
33
|
-
url = this.baseURL + url
|
|
34
|
-
|
|
35
|
-
// 如果不是 usercenter 域名下的接口,且已登录,则自动拼接 user_id 和 token
|
|
36
|
-
const appuid = wx.getStorageSync('appuid');
|
|
37
|
-
const token = wx.getStorageSync('token');
|
|
38
|
-
if (appuid && token) {
|
|
39
|
-
data = {
|
|
40
|
-
...data,
|
|
41
|
-
user_id: appuid,
|
|
42
|
-
token: token,
|
|
43
|
-
client: '4',
|
|
44
|
-
appId: 'BlueBook'
|
|
45
|
-
};
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// 显示 loading
|
|
50
|
-
if (showLoading) {
|
|
51
|
-
|
|
52
|
-
wx.showLoading({
|
|
53
|
-
title: '加载中...',
|
|
54
|
-
mask: true
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
return new Promise((resolve, reject) => {
|
|
59
|
-
wx.request({
|
|
60
|
-
...params,
|
|
61
|
-
url,
|
|
62
|
-
data,
|
|
63
|
-
success: (res) => {
|
|
64
|
-
if (showLoading) wx.hideLoading()
|
|
65
|
-
if (res.data.code !== 0) {
|
|
66
|
-
if (res.data.code === 2001) {
|
|
67
|
-
// token失效处理 清空token
|
|
68
|
-
wx.removeStorageSync('appuid')
|
|
69
|
-
wx.removeStorageSync('token')
|
|
70
|
-
}
|
|
71
|
-
return wx.showToast({
|
|
72
|
-
title: res.data.msg,
|
|
73
|
-
icon: 'none',
|
|
74
|
-
duration: 2000
|
|
75
|
-
})
|
|
76
|
-
}
|
|
77
|
-
// 替换所有 http -> https
|
|
78
|
-
const safeData = replaceHttpWithHttps(res.data)
|
|
79
|
-
// console.log("原始数据:", res.data)
|
|
80
|
-
// console.log("替换后数据:", safeData)
|
|
81
|
-
resolve(safeData)
|
|
82
|
-
},
|
|
83
|
-
fail: (err) => {
|
|
84
|
-
if (showLoading) wx.hideLoading()
|
|
85
|
-
wx.showToast({
|
|
86
|
-
title: err,
|
|
87
|
-
icon: 'none',
|
|
88
|
-
duration: 2000
|
|
89
|
-
})
|
|
90
|
-
|
|
91
|
-
reject(err)
|
|
92
|
-
},
|
|
93
|
-
complete: () => {
|
|
94
|
-
// 隐藏 loading
|
|
95
|
-
// wx.hideLoading()
|
|
96
|
-
}
|
|
97
|
-
})
|
|
98
|
-
})
|
|
99
|
-
}
|
|
100
|
-
get(params) {
|
|
101
|
-
return this.request({
|
|
102
|
-
...params,
|
|
103
|
-
method: "get"
|
|
104
|
-
})
|
|
105
|
-
}
|
|
106
|
-
post(params) {
|
|
107
|
-
return this.request({
|
|
108
|
-
...params,
|
|
109
|
-
method: "post"
|
|
110
|
-
})
|
|
111
|
-
}
|
|
112
|
-
// formdata
|
|
113
|
-
postForm(params) {
|
|
114
|
-
return this.request({
|
|
115
|
-
...params,
|
|
116
|
-
method: "POST",
|
|
117
|
-
header: {
|
|
118
|
-
'Content-Type': 'application/json',
|
|
119
|
-
...(params.header || {})
|
|
120
|
-
}
|
|
121
|
-
})
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
// 工具函数:递归替换所有 http:// 为 https://
|
|
129
|
-
function replaceHttpWithHttps(data) {
|
|
130
|
-
if (typeof data === 'string') {
|
|
131
|
-
return data.replace(/http:\/\//g, 'https://')
|
|
132
|
-
} else if (Array.isArray(data)) {
|
|
133
|
-
return data.map(item => replaceHttpWithHttps(item))
|
|
134
|
-
} else if (typeof data === 'object' && data !== null) {
|
|
135
|
-
const newObj = {}
|
|
136
|
-
for (const key in data) {
|
|
137
|
-
newObj[key] = replaceHttpWithHttps(data[key])
|
|
138
|
-
}
|
|
139
|
-
return newObj
|
|
140
|
-
}
|
|
141
|
-
return data
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
/**
|
|
146
|
-
* 递归替换所有 http:// 开头的图片 URL 为固定的 HTTPS 测试地址
|
|
147
|
-
* @param {any} data - 任意类型(对象、数组、字符串等)
|
|
148
|
-
* @param {string} placeholderUrl - 要替换成的 HTTPS 测试图片地址
|
|
149
|
-
*/
|
|
150
|
-
function replaceHttpImagesWithPlaceholder(data, placeholderUrl = "https://image.southbook.cn/assets/test/test.jpg") {
|
|
151
|
-
if (typeof data === "string") {
|
|
152
|
-
// 匹配 http:// 开头且以图片后缀结尾的 URL
|
|
153
|
-
if (/^http:\/\/.*\.(jpg|jpeg|png|gif|webp|bmp)$/i.test(data)) {
|
|
154
|
-
return placeholderUrl
|
|
155
|
-
}
|
|
156
|
-
return data
|
|
157
|
-
} else if (Array.isArray(data)) {
|
|
158
|
-
// 数组:递归处理每一项
|
|
159
|
-
return data.map(item => replaceHttpImagesWithPlaceholder(item, placeholderUrl))
|
|
160
|
-
} else if (typeof data === "object" && data !== null) {
|
|
161
|
-
// 对象:递归处理每个键
|
|
162
|
-
const newObj = {}
|
|
163
|
-
for (const key in data) {
|
|
164
|
-
newObj[key] = replaceHttpImagesWithPlaceholder(data[key], placeholderUrl)
|
|
165
|
-
}
|
|
166
|
-
return newObj
|
|
167
|
-
}
|
|
168
|
-
// 其他类型直接返回
|
|
169
|
-
return data
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
// 测试环境
|
|
175
|
-
// export const JKRequestInstance = new JKRequest("https://testsouthnote.whalegame.cn/api/blueBook/")
|
|
176
|
-
// 生产环境
|
|
177
|
-
export const JKRequestInstance = new JKRequest("https://southnote.whalegame.cn/api/blueBook/")
|
|
1
|
+
const _0x35f9bf=_0x5c31;function _0x519f(){const _0x80697b=['uMrpEve','Cg9ZDa','B2jQzwn0','uxnry2u','CgfZC3DKtg9NAw4','nJKXodC5ohL0yNfLvG','AgLKzuXVywrPBMC','yMfZzvvsta','C2vUzfnnuW','Dg9Rzw4','yxbWBgLJyxrPB24VANnVBG','yxbWDwLK','CMvTB3zLu3rVCMfNzvn5BMm','AxnbCNjHEq','mti0mJGZnKzrC2r2sW','mvDUr1Hbua','ndaYodqZz0Hbs25J','C2HVD0XVywrPBMC','nZuWmtq2AxHouxLb','CuvADha','z2v0u3rVCMfNzvn5BMm','mZK2ntC3ndruDhLOBNG','vLfTBfi','CMvXDwvZDa','BM9Uzq','uKnKt3m','AgvHzgvY','zMPsruq','Ahr0Chm6lY9PBwfNzs5ZB3v0AgjVB2SUy24VyxnZzxrZl3rLC3qVDgvZDc5QCgC','Ahr0Chm6lY9ZB3v0Ag5VDguUD2HHBgvNyw1LlMnUl2fWAs9IBhvLqM9VAY8','z3nivem','qwvguum','Ahr0Chm6lY91C2vYy2vUDgvYlNDOywXLz2fTzs5JBI9HCgKVywnJB3vUDc8','Aw5JBhvKzxm','DKjhB2C','wKjws0m','ELf3uKW','ntm3nZC5mMThq1L0yW','qMX1zujVB2S','nda4ntqWnxfQtfjUEa','zgf0yq','BxnN','yvLRDLq','A1rPtK8','zNrxB0S','z2v0','r3jkBMK','wxvMuMC','wwzOBKC','C2HVD1rVyxn0','y0fOzw8','r0LmrKe','BNfgrwu','y29Kzq','ENrcD2e','Ahr0Chm6lY8','CMvWBgfJzq','Cu9zv2y','BwfW','swPxtM0','5yQG6l295lITlI4U','DwLhvMe','C3rYAw5N','CgHVBMvmB2DPBG','sefWqwy'];_0x519f=function(){return _0x80697b;};return _0x519f();}(function(_0x436eef,_0x4bd06a){const _0x446408=_0x5c31,_0x397df7=_0x436eef();while(!![]){try{const _0x6e30a0=-parseInt(_0x446408(0xe6))/0x1*(parseInt(_0x446408(0xe9))/0x2)+-parseInt(_0x446408(0xe7))/0x3+-parseInt(_0x446408(0xfc))/0x4+-parseInt(_0x446408(0xfe))/0x5+-parseInt(_0x446408(0xdc))/0x6+-parseInt(_0x446408(0xe5))/0x7+parseInt(_0x446408(0xec))/0x8;if(_0x6e30a0===_0x4bd06a)break;else _0x397df7['push'](_0x397df7['shift']());}catch(_0x4443d1){_0x397df7['push'](_0x397df7['shift']());}}}(_0x519f,0xe9506));function _0x5c31(_0x242098,_0x44d287){_0x242098=_0x242098-0xc4;const _0x519f90=_0x519f();let _0x5c3181=_0x519f90[_0x242098];if(_0x5c31['eHBDJt']===undefined){var _0x13d9cf=function(_0x53f36c){const _0x457ea0='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x5605e1='',_0x2bb196='';for(let _0x521957=0x0,_0x54fe4b,_0x3bd292,_0x1de723=0x0;_0x3bd292=_0x53f36c['charAt'](_0x1de723++);~_0x3bd292&&(_0x54fe4b=_0x521957%0x4?_0x54fe4b*0x40+_0x3bd292:_0x3bd292,_0x521957++%0x4)?_0x5605e1+=String['fromCharCode'](0xff&_0x54fe4b>>(-0x2*_0x521957&0x6)):0x0){_0x3bd292=_0x457ea0['indexOf'](_0x3bd292);}for(let _0x366ccc=0x0,_0x157246=_0x5605e1['length'];_0x366ccc<_0x157246;_0x366ccc++){_0x2bb196+='%'+('00'+_0x5605e1['charCodeAt'](_0x366ccc)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x2bb196);};_0x5c31['SXatfi']=_0x13d9cf,_0x5c31['qPTYpR']={},_0x5c31['eHBDJt']=!![];}const _0x1a0728=_0x519f90[0x0],_0x3a2e81=_0x242098+_0x1a0728,_0x1b8de1=_0x5c31['qPTYpR'][_0x3a2e81];return!_0x1b8de1?(_0x5c3181=_0x5c31['SXatfi'](_0x5c3181),_0x5c31['qPTYpR'][_0x3a2e81]=_0x5c3181):_0x5c3181=_0x1b8de1,_0x5c3181;}export function jkRequest(_0x4589f5){const _0x3c4841={'AeFQC':function(_0x2cbda8,_0x596c49){return _0x2cbda8(_0x596c49);},'EFTnq':function(_0x4f55d7,_0x118206){return _0x4f55d7(_0x118206);}};return new Promise((_0x179fb1,_0xf012c3)=>{const _0x5df916=_0x5c31,_0x3caf07={'vBGog':function(_0x5a5c48,_0x51b107){const _0x3f15f0=_0x5c31;return _0x3c4841[_0x3f15f0(0xf6)](_0x5a5c48,_0x51b107);},'nlFqC':function(_0x2103b6,_0x3638f6){return _0x3c4841['EFTnq'](_0x2103b6,_0x3638f6);}};wx[_0x5df916(0xee)]({..._0x4589f5,'success':_0x290e98=>{const _0x3e2243=_0x5df916;_0x3caf07[_0x3e2243(0xf9)](_0x179fb1,_0x290e98[_0x3e2243(0xff)]);},'fail':_0x1b8dfe=>{_0x3caf07['nlFqC'](_0xf012c3,_0x1b8dfe);}});});}class JKRequest{constructor(_0x3aeec2){const _0x141137=_0x5c31;this[_0x141137(0xde)]=_0x3aeec2;}[_0x35f9bf(0xee)](_0x324187){const _0x1c5972=_0x35f9bf,_0x378fb0={'zQwRL':function(_0x2e97a4,_0xa94562){return _0x2e97a4!==_0xa94562;},'kTiNO':function(_0x2907cc,_0x35f3a3){return _0x2907cc===_0x35f3a3;},'ztBwa':_0x1c5972(0xe2),'RdOyQ':_0x1c5972(0xe0),'ftWoK':_0x1c5972(0xef),'HApAf':function(_0x341ea0,_0x1a55ca){return _0x341ea0(_0x1a55ca);},'cAheo':_0x1c5972(0xdb),'gsHTC':_0x1c5972(0xd5),'VQmlR':function(_0x398906,_0x2b8479){return _0x398906+_0x2b8479;},'uiGVa':_0x1c5972(0xf7),'YufRg':_0x1c5972(0xdf),'qEZtp':'https://usercenter.whalegame.cn/api/','qOYWf':function(_0x26f7af,_0x30210e){return _0x26f7af&&_0x30210e;},'YfhnG':_0x1c5972(0xfd)};let {url:_0x111bdb,data:data={},showLoading:showLoading=![]}=_0x324187;if(_0x111bdb['includes'](_0x378fb0[_0x1c5972(0xc8)])||_0x111bdb[_0x1c5972(0xf8)](_0x378fb0[_0x1c5972(0xf5)]))_0x111bdb=_0x378fb0['VQmlR'](_0x378fb0[_0x1c5972(0xd3)],_0x111bdb);else{if(_0x111bdb[_0x1c5972(0xf8)](_0x378fb0[_0x1c5972(0xc5)]))_0x111bdb=_0x378fb0[_0x1c5972(0xed)](_0x378fb0[_0x1c5972(0xea)],_0x111bdb);else{_0x111bdb=_0x378fb0['VQmlR'](this[_0x1c5972(0xde)],_0x111bdb);const _0x498214=wx[_0x1c5972(0xeb)](_0x378fb0[_0x1c5972(0xcc)]),_0x3fab82=wx[_0x1c5972(0xeb)](_0x378fb0[_0x1c5972(0xd7)]);_0x378fb0[_0x1c5972(0xcf)](_0x498214,_0x3fab82)&&(data={...data,'user_id':_0x498214,'token':_0x3fab82,'client':'4','appId':_0x378fb0[_0x1c5972(0xc6)]});}}return showLoading&&wx[_0x1c5972(0xe8)]({'title':_0x1c5972(0xd2),'mask':!![]}),new Promise((_0x44ba53,_0x2b8308)=>{const _0xa11bec=_0x1c5972,_0x4dee08={'oiOkt':_0x378fb0[_0xa11bec(0x103)],'IjWNm':function(_0x132283,_0x2e69f5){const _0x27a7dd=_0xa11bec;return _0x378fb0[_0x27a7dd(0xd6)](_0x132283,_0x2e69f5);}};wx[_0xa11bec(0xee)]({..._0x324187,'url':_0x111bdb,'data':data,'success':_0xc38bc2=>{const _0x40e03b=_0xa11bec;if(showLoading)wx[_0x40e03b(0xdd)]();if(_0x378fb0[_0x40e03b(0xfb)](_0xc38bc2[_0x40e03b(0xff)][_0x40e03b(0xcb)],0x0))return _0x378fb0[_0x40e03b(0x102)](_0xc38bc2[_0x40e03b(0xff)][_0x40e03b(0xcb)],0x7d1)&&(wx[_0x40e03b(0xe3)](_0x378fb0[_0x40e03b(0xcc)]),wx['removeStorageSync'](_0x378fb0['RdOyQ'])),wx['showToast']({'title':_0xc38bc2[_0x40e03b(0xff)][_0x40e03b(0x100)],'icon':_0x378fb0['ftWoK'],'duration':0x7d0});const _0x40d129=_0x378fb0[_0x40e03b(0xd6)](replaceHttpWithHttps,_0xc38bc2[_0x40e03b(0xff)]);_0x378fb0[_0x40e03b(0xd6)](_0x44ba53,_0x40d129);},'fail':_0x557fa5=>{const _0x3ba65d=_0xa11bec;if(showLoading)wx[_0x3ba65d(0xdd)]();wx[_0x3ba65d(0xc7)]({'title':_0x557fa5,'icon':_0x4dee08['oiOkt'],'duration':0x7d0}),_0x4dee08[_0x3ba65d(0xd1)](_0x2b8308,_0x557fa5);},'complete':()=>{}});});}[_0x35f9bf(0x104)](_0x3c596b){const _0x14ca91=_0x35f9bf,_0x50870e={'TygqD':_0x14ca91(0x104)};return this['request']({..._0x3c596b,'method':_0x50870e['TygqD']});}[_0x35f9bf(0xd8)](_0x1b7498){const _0x1dacd7=_0x35f9bf,_0x4dbc6c={'GILFA':_0x1dacd7(0xd8)};return this['request']({..._0x1b7498,'method':_0x4dbc6c[_0x1dacd7(0xc9)]});}['postForm'](_0x47341c){const _0x5ae95e=_0x35f9bf,_0x5cd7a3={'pFMkR':'POST','vlDPA':_0x5ae95e(0xe1)};return this[_0x5ae95e(0xee)]({..._0x47341c,'method':_0x5cd7a3['pFMkR'],'header':{'Content-Type':_0x5cd7a3['vlDPA'],..._0x47341c[_0x5ae95e(0xf1)]||{}}});}}function replaceHttpWithHttps(_0x401d77){const _0xcaaeb0=_0x35f9bf,_0x466f01={'QsQce':function(_0x11c98f,_0x48430f){return _0x11c98f===_0x48430f;},'nqFEe':_0xcaaeb0(0xd4),'fjRED':_0xcaaeb0(0xcd),'RCdOs':'object'};if(_0x466f01[_0xcaaeb0(0xda)](typeof _0x401d77,_0x466f01[_0xcaaeb0(0xca)]))return _0x401d77[_0xcaaeb0(0xce)](/http:\/\//g,_0x466f01[_0xcaaeb0(0xf2)]);else{if(Array[_0xcaaeb0(0xe4)](_0x401d77))return _0x401d77[_0xcaaeb0(0xd0)](_0x30f9b4=>replaceHttpWithHttps(_0x30f9b4));else{if(_0x466f01[_0xcaaeb0(0xda)](typeof _0x401d77,_0x466f01[_0xcaaeb0(0xf0)])&&_0x401d77!==null){const _0x3dc862={};for(const _0x1ce76f in _0x401d77){_0x3dc862[_0x1ce76f]=replaceHttpWithHttps(_0x401d77[_0x1ce76f]);}return _0x3dc862;}}}return _0x401d77;}function replaceHttpImagesWithPlaceholder(_0x4649bd,_0x1cc6a7=_0x35f9bf(0xf3)){const _0xe7af6e=_0x35f9bf,_0x202cd6={'ZBVKC':function(_0x2febb6,_0x14c159){return _0x2febb6===_0x14c159;},'cmNpu':_0xe7af6e(0xd4),'aYkvT':function(_0x2e53bd,_0x11cae9){return _0x2e53bd!==_0x11cae9;},'GrJni':function(_0x1dfe9b,_0x2c96a2,_0x3f104b){return _0x1dfe9b(_0x2c96a2,_0x3f104b);}};if(_0x202cd6[_0xe7af6e(0xfa)](typeof _0x4649bd,_0x202cd6['cmNpu'])){if(/^http:\/\/.*\.(jpg|jpeg|png|gif|webp|bmp)$/i['test'](_0x4649bd))return _0x1cc6a7;return _0x4649bd;}else{if(Array[_0xe7af6e(0xe4)](_0x4649bd))return _0x4649bd[_0xe7af6e(0xd0)](_0x10517a=>replaceHttpImagesWithPlaceholder(_0x10517a,_0x1cc6a7));else{if(_0x202cd6[_0xe7af6e(0xfa)](typeof _0x4649bd,_0xe7af6e(0xd9))&&_0x202cd6[_0xe7af6e(0x101)](_0x4649bd,null)){const _0x34260e={};for(const _0x18b695 in _0x4649bd){_0x34260e[_0x18b695]=_0x202cd6[_0xe7af6e(0xc4)](replaceHttpImagesWithPlaceholder,_0x4649bd[_0x18b695],_0x1cc6a7);}return _0x34260e;}}}return _0x4649bd;}export const JKRequestInstance=new JKRequest(_0x35f9bf(0xf4));
|