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 a4968d8dc6 Events handling changes. Added new convenience functions to events module
to make event handling easier still for newbies
2014-04-26 16:56:57 +01:00

4 lines
82 B
JavaScript

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