Sha256: ba8921e56178aeb6b7907a8689240b89052d58af38b574f488fc62f2e7f85423
Contents?: true
Size: 554 Bytes
Versions: 23
Compression:
Stored size: 554 Bytes
Contents
export default function toJSON(value, arg, ctx) { if (Array.isArray(value)) return value.map(function (v, i) { return toJSON(v, String(i), ctx); }); if (value && typeof value.toJSON === 'function') { var anchor = ctx && ctx.anchors && ctx.anchors.find(function (a) { return a.node === value; }); if (anchor) ctx.onCreate = function (res) { anchor.res = res; delete ctx.onCreate; }; var res = value.toJSON(arg, ctx); if (anchor && ctx.onCreate) ctx.onCreate(res); return res; } return value; }
Version data entries
23 entries across 23 versions & 1 rubygems