add methods.
This commit is contained in:
parent
805848568d
commit
c0df934775
47
game/game.js
47
game/game.js
|
@ -7262,6 +7262,29 @@
|
||||||
generator:item=>gnc.is.generator(item)
|
generator:item=>gnc.is.generator(item)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
comparator:{
|
||||||
|
e:function(){
|
||||||
|
if(arguments.length<=1) return true;
|
||||||
|
for(let i=1;i<arguments.length;++i) if(arguments[i]!==arguments[0])return false;
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
ei:function(){
|
||||||
|
if(arguments.length<=1) return true;
|
||||||
|
for(let i=1;i<arguments.length;++i) if(arguments[i]===arguments[0])return true;
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
ne:function(){
|
||||||
|
if(arguments.length<=1) return true;
|
||||||
|
for(let i=1;i<arguments.length;++i) if(arguments[i]===arguments[0])return false;
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
nei:function(){
|
||||||
|
if(arguments.length<=1) return true;
|
||||||
|
for(let i=1;i<arguments.length;++i) if(arguments[i]!==arguments[0])return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
creation:{},
|
||||||
linq:{
|
linq:{
|
||||||
cselector:{
|
cselector:{
|
||||||
hasAttr:name=>`[${name}]`,
|
hasAttr:name=>`[${name}]`,
|
||||||
|
@ -8349,6 +8372,26 @@
|
||||||
|
|
||||||
window.game=game;
|
window.game=game;
|
||||||
game.dynamicStyle.init();
|
game.dynamicStyle.init();
|
||||||
|
Object.defineProperty(lib.creation,"a",{
|
||||||
|
enumerable:true,
|
||||||
|
get:()=>[],
|
||||||
|
set:()=>null
|
||||||
|
});
|
||||||
|
Object.defineProperty(lib.creation,"o",{
|
||||||
|
enumerable:true,
|
||||||
|
get:()=>({}),
|
||||||
|
set:()=>null
|
||||||
|
});
|
||||||
|
Object.defineProperty(lib.creation,"no",{
|
||||||
|
enumerable:true,
|
||||||
|
get:()=>Object.create(null),
|
||||||
|
set:()=>null
|
||||||
|
});
|
||||||
|
Object.defineProperty(lib.creation,"s",{
|
||||||
|
enumerable:true,
|
||||||
|
get:()=>"",
|
||||||
|
set:()=>null
|
||||||
|
});
|
||||||
// node:path library alternative
|
// node:path library alternative
|
||||||
if (typeof module!="object"||typeof module.exports!="object") lib.init.js(`${lib.assetURL}game`,"path.min",()=>{
|
if (typeof module!="object"||typeof module.exports!="object") lib.init.js(`${lib.assetURL}game`,"path.min",()=>{
|
||||||
lib.path=window._noname_path;
|
lib.path=window._noname_path;
|
||||||
|
@ -32221,6 +32264,10 @@
|
||||||
'哥哥,交个朋友吧',
|
'哥哥,交个朋友吧',
|
||||||
'妹子,交个朋友吧',
|
'妹子,交个朋友吧',
|
||||||
],
|
],
|
||||||
|
other:{
|
||||||
|
bool:(item)=>Boolean(item),
|
||||||
|
ignore:()=>{}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
const game={
|
const game={
|
||||||
//addGroup
|
//addGroup
|
||||||
|
|
Loading…
Reference in New Issue