UNPKG

wecui

Version:

一款基于Vue2.x版本的移动端web组件

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); } };