UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

8 lines 190 B
module.exports = function stringify(x) { try { // handle "Converting circular structure to JSON" error return JSON.stringify(x, null, 2); } catch (e) { return String(x); } };