We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For my project I need to extend objects, so normally I use external libraries for example jQuery.extend(...) or lodash.merge(...):
jQuery.extend(...)
lodash.merge(...)
// test "lodash" lib var test = {id: 1}; var test2 = _.merge({}, test, {name: "Bob"}); print(JSON.stringify(test2));
Do you know a Java-native way to extend objects? for example using ScriptObjectMirror.putAll(...)
ScriptObjectMirror.putAll(...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For my project I need to extend objects, so normally I use external libraries for example
jQuery.extend(...)
orlodash.merge(...)
:Do you know a Java-native way to extend objects? for example using
ScriptObjectMirror.putAll(...)
The text was updated successfully, but these errors were encountered: