1.0.2 • Published 4 years ago

js-obj-to-str v1.0.2

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

object-to-string

This package has two function

  1. getObjectStringConsole: For getting output string for consoles

  2. getObjectStringHtml For getting output string for browsers or getting HTML content

Example: const objToStr = require('js-obj-to-str');

const testSub = { "type": 2, "value": "test", "address": "string" };

console.log(objToStr.getObjectStringHtml(testSub)); Output:

console.log(objToStr.getObjectStringConsole(testSub));

Output: type = 2 value = test address = string