Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
/ jquery-json Public archive

[Discontinued] Use native JSON.stringify and JSON.parse instead, or json2.js from https://github.com/douglascrockford/JSON-js

License

Notifications You must be signed in to change notification settings

Krinkle/jquery-json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a2d3836 · Feb 29, 2024

History

70 Commits
Aug 19, 2016
Aug 19, 2016
Apr 22, 2015
May 23, 2014
Aug 19, 2016
May 23, 2014
Aug 19, 2016
May 23, 2014
Aug 19, 2016
Aug 19, 2016
Aug 19, 2016
Feb 29, 2024
Aug 19, 2016

Repository files navigation

npm Tested with QUnit

jQuery JSON

JSON plugin for jQuery, provides simple ways to convert to JSON and back again.

Usage

$.toJSON(myObject);
$.toJSON({ foo: 'bar' });

Development

To create the minified build, run this command from the root directory of the repository:

$ npm run build

Test

Open up ./test/index.html in your browser to run the test suite, or run it from the command line with Grunt:

$ npm install
$ npm test

For it to pass in modern browsers, you have to enable the disableNative option from the QUnit toolbar.

Also, before releasing. Make sure to test the minifed version as well, you can do so by enabling the distmin option in the QUnit toolbar. This will load the minified build from the ./dist/ directory instead of ./src/.

Versioning

We use the Semantic Versioning guidelines as much as possible.

Releases will be numbered in the following format:

<major>.<minor>.<patch>

For more information on SemVer, please visit http://semver.org/.