mirror of
https://github.com/VickScarlet/lifeRestart.git
synced 2026-03-25 08:34:16 +08:00
update specialthanks
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -2542,6 +2542,18 @@
|
|||||||
"group": 2,
|
"group": 2,
|
||||||
"name": "Mescaline茗零"
|
"name": "Mescaline茗零"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"group": 2,
|
||||||
|
"name": "希希希土"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"group": 2,
|
||||||
|
"name": "食光者"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"group": 2,
|
||||||
|
"name": "稻谷之骨"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"group": 2,
|
"group": 2,
|
||||||
"name": "超级无敌暴龙战士"
|
"name": "超级无敌暴龙战士"
|
||||||
@@ -4453,5 +4465,22 @@
|
|||||||
{
|
{
|
||||||
"group": 2,
|
"group": 2,
|
||||||
"name": "泊彧"
|
"name": "泊彧"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"group": 2,
|
||||||
|
"name": "好真实这个人"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"group": 2,
|
||||||
|
"name": "马丁"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"group": 2,
|
||||||
|
"name": "什么时候修成正果"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"group": 1,
|
||||||
|
"name": "ethan.lang@wisdomhashrate.com",
|
||||||
|
"comment": "北京团队诚聘java、区块链相关工程师,加入我们吧!你的人生何须重开?"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
function clone(value) {
|
function clone(value) {
|
||||||
switch(typeof value) {
|
switch(typeof value) {
|
||||||
case 'object':
|
case 'object':
|
||||||
|
if(value === null) return null;
|
||||||
if(Array.isArray(value)) return value.map(v=>clone(v));
|
if(Array.isArray(value)) return value.map(v=>clone(v));
|
||||||
const newObj = {};
|
const newObj = {};
|
||||||
for(const key in value) newObj[key] = clone(value[key]);
|
for(const key in value) newObj[key] = clone(value[key]);
|
||||||
|
|||||||
Reference in New Issue
Block a user