UNPKG

@syngrisi/syngrisi

Version:
10 lines (7 loc) 236 B
const { EJSON } = require('bson'); const isJSON = require('./isJSON'); const deserializeIfJSON = (text) => { if (isJSON(text)) return EJSON.parse(text || null) || undefined; return text; }; module.exports = deserializeIfJSON;