![JAR search and dependency download from the Maven repository](/logo.png)
node_modules.jsonify.test.parse.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libjoynr-js Show documentation
Show all versions of libjoynr-js Show documentation
JOYnr JavaScript libjoynr-js
var test = require('tap').test;
var json = require('../');
var garbage = require('garbage');
test('parse', function (t) {
for (var i = 0; i < 50; i++) {
var s = JSON.stringify(garbage(50));
t.deepEqual(
json.parse(s),
JSON.parse(s)
);
}
t.end();
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy