java-to-js
v1.0.0
Published
Easy way to wrap java object to js object, the reverse of https://github.com/node-modules/js-to-java
Downloads
3
Readme
java-to-js
Easy way to wrap java object to js object, the reverse of js-to-java
In hessian.js, when read with type we get java classname with js object, so convert it to plain js object so we can use it normally.
Install
$ npm install java-to-js
Usage
const java2js = require('java-to-js');
let java = {
$class: 'xxxx',
$: {
foo: 'bar',
bar: {
$class: 'int',
$: 3,
},
},
};
java2js(java);
// => {foo: 'bar', bar: 3}
License
MIT