1.0.0 • Published 9 years ago
java-to-js v1.0.0
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
1.0.0
9 years ago