bae705aa97
- Add NFC ePassport roadmap (ICAO 9303, eIDAS) - Add TensorFlow.js edge face detection (BlazeFace) - Add structured audit logger (GDPR-compliant) - Risk scoring support Part of KYC Apple Native UX v1.1.0
13 lines
409 B
JavaScript
13 lines
409 B
JavaScript
var json_stringify = require('./lib/stringify.js').stringify;
|
|
var json_parse = require('./lib/parse.js');
|
|
|
|
module.exports = function(options) {
|
|
return {
|
|
parse: json_parse(options),
|
|
stringify: json_stringify
|
|
}
|
|
};
|
|
//create the default method members with no options applied for backwards compatibility
|
|
module.exports.parse = json_parse();
|
|
module.exports.stringify = json_stringify;
|