fork(2) download
  1. function isNative (Ctor){
  2. return typeof Ctor === 'function' && /native code/.test(Ctor.toString())
  3. }
  4.  
  5. function pituh(){
  6. print('native code');
  7. }
  8.  
  9. print(isNative(pituh));
Success #stdin #stdout 0.02s 16800KB
stdin
Standard input is empty
stdout
true