Skip to content
New issue

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

Update xml2json.js #26

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ x2js - XML to JSON and vice versa for JavaScript
This library provides XML to JSON (JavaScript Objects) and vice versa javascript conversion functions.
The library is very small and has no any dependencies.


## Fork:
Adds a new feature to keep the order of an XML for user specific items.
Take note: It will add a new container to keep your items in order.

New config options:
* `keepOrder: true|false` Default: false - Enables the feature
* `orderContainerName: "<string>"` Default: x2jsOrderContainer - Name of the json object that contains the elements which should keep the order
* `arrayOrderItems: []` - Array with the names of the elements that should keep the order

====

## API functions

* `new X2JS()` - to create your own instance to access all library functionality
Expand Down
Loading