This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/src/main/js/lib/java-utils.js
walterhiggins 2ba3335a16 Omit abstract event classes from events-helper.
Improved tab completion for jre8
2014-04-26 20:20:10 +01:00

7 lines
125 B
JavaScript

exports.isJavaObject = function( o ) {
if (o === global){
return false;
}
return o instanceof java.lang.Object;
};