Lines Matching defs:undetectable
17 var undetectable = ArkTools.getUndetectable();
20 print(typeof undetectable == 'undefined');
21 print(typeof undetectable === 'undefined');
22 print(typeof undetectable != 'undefined');
23 print(typeof undetectable !== 'undefined');
26 print(typeof undetectable != 'function');
27 print(typeof undetectable !== 'function');
28 print(typeof undetectable == 'function');
29 print(typeof undetectable === 'function');
32 print(typeof undetectable != 'object');
33 print(typeof undetectable !== 'object');
34 print(typeof undetectable == 'object');
35 print(typeof undetectable === 'object')