You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The WJI format can get quite verbose and the toJSON sometimes contains properties which are not necessarily relavent to the client application. Hence, can the signature toJSON(node, shallow) be modified to toJSON(node, attributes=['children', 'pointers', ....])? I am fine with the previous signature or a signature like toJSON(node, omitAttributes=['children', 'pointers', ...])
The text was updated successfully, but these errors were encountered:
umesh-timalsina
changed the title
Allow picking keys during import
Allow picking keys during export
Sep 6, 2022
This sounds good but it might be nice to use a Set rather than an index as I would expect it to have better performance than using an array (and the position doesn't have any meaning here).
The
WJI
format can get quite verbose and thetoJSON
sometimes contains properties which are not necessarily relavent to the client application. Hence, can the signaturetoJSON(node, shallow)
be modified totoJSON(node, attributes=['children', 'pointers', ....])
? I am fine with the previous signature or a signature liketoJSON(node, omitAttributes=['children', 'pointers', ...])
The text was updated successfully, but these errors were encountered: