Sign in
apache
/
pouchdb
/
refs/heads/simplify-adapter
/
.
/
lib
/
deps
/
safeJsonStringify.js
blob: b755071c6187f404698ac1a6cd1146391c3f8429 [
file
] [
log
] [
blame
]
'use strict'
;
var
vuvuzela
=
require
(
'vuvuzela'
);
module
.
exports
=
function
safeJsonStringify
(
json
)
{
try
{
return
JSON
.
stringify
(
json
);
}
catch
(
e
)
{
/* istanbul ignore next */
return
vuvuzela
.
stringify
(
json
);
}
};