rn-snoopy/formatting.js

5 lines
177 B
JavaScript
Raw Permalink Normal View History

2016-07-24 08:03:33 +00:00
2016-08-03 19:37:40 +00:00
const stringify = (info)=>`${info.type == 0 ? 'N->JS' : 'JS->N'} : ${info.module ? (info.module+'.') : ''}${info.method}(${JSON.stringify(info.args)}) *`
2016-07-24 08:03:33 +00:00
export { stringify }