{"_id":"@alloc/stringy","_rev":"1-08e1abe7ff5af431bd55b741e8912431","name":"@alloc/stringy","dist-tags":{"latest":"0.1.0"},"versions":{"0.1.0":{"name":"@alloc/stringy","version":"0.1.0","repository":{"type":"git","url":"git+https://github.com/alloc/stringy.git"},"gitHead":"ed812af1026f5c025c5cd04b3ae5628ad95967c9","description":"Stringify a value into a minimal, readable format.","bugs":{"url":"https://github.com/alloc/stringy/issues"},"homepage":"https://github.com/alloc/stringy#readme","_id":"@alloc/stringy@0.1.0","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"integrity":"sha512-bo4ea/z2zQCTi5NuA6dc55OVqXKK+4ou9evh4SPbYO31hQqTXxMlnW2dq5FuDjVUz0ZYIaZf+XkcuIwGmnWpIQ==","shasum":"9ba6c85d24573c88aacc99a6bcad08361198c332","tarball":"https://registry.npmjs.org/@alloc/stringy/-/stringy-0.1.0.tgz","fileCount":5,"unpackedSize":2937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJect5ZCRA9TVsSAnZWagAAX8QQAJ7CgkYYgchAGQFjrn40\n362qInQKTZKp7EVmz6nXzx7/AL+1XKmtd6aWalodzHDh+v92elwWOx/SyoBv\nWPf8V2FaGCiT+h7mFUndLVUS6Om5Zejp1/RpIP6HBPzsy9+h7pQWdzBNIvYs\nY5UZTAddrRFi6GuGBv547pzMPhjShDBMSjyqr5tb/yQifUUPwH8kJdKb1Il7\nEwl6a0YUnHuXxRyH/4VYOy77Iq7x1X5RWyxbe4ReWKik6XZ56YCKgdeKSDNs\n/z04LjIgKl3cCv3GC4eePxFyluuDfvF99JYE41z/wJ0RiungCXkpzSBeKQ0o\nLRbqJ9X6RD8KiTw8mXNYJUzs0oHdQhBmE1Xo0z14zDuTCUcsSN5yhzP5X423\nfXaTWbijJHrEgNleIpgu5A+ZJY4Dl1hBWiii3uqj5fAtpTzVIzIkLm5j336I\nrThD6o2srQLudu6FuWofVfxVbJMQKwrH7/Jmba1sInKhCJhJkXF7kVOnigrI\npLiagwi2MMhZwwAa/keXUWJzMChCIoKbqKnHhlRcKMdbEhnxCav3kVkkXS8l\nBtBEsN74NUcABDd9LLADfMyXnMp2+apTS/7EEoyh/KZugFhhbauFw4scRWxe\nWZ+0ds+Eor4RPG5pfaOw+OqFYxbYSQvlR9jCqbkfUVag7ZN3gIQV+b6Ue0pH\nP9t+\r\n=G3LN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC2hy+O/CdMusrvTkJV4IUUEMq0fUcx3HbbZR5cxXXOGAiEA4tBPZoeiG/Uwde0Qqo2KoXVns2yj3Gd6tS7+PaLzTdE="}]},"maintainers":[{"name":"aleclarson","email":"aleclarson@protonmail.com"}],"_npmUser":{"name":"aleclarson","email":"aleclarson@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stringy_0.1.0_1584586328569_0.8469755460175408"},"_hasShrinkwrap":false}},"time":{"created":"2020-03-19T02:52:08.370Z","0.1.0":"2020-03-19T02:52:08.769Z","modified":"2022-04-04T13:33:43.469Z"},"maintainers":[{"name":"aleclarson","email":"aleclarson@protonmail.com"}],"description":"Stringify a value into a minimal, readable format.","homepage":"https://github.com/alloc/stringy#readme","repository":{"type":"git","url":"git+https://github.com/alloc/stringy.git"},"bugs":{"url":"https://github.com/alloc/stringy/issues"},"readme":"# @alloc/stringy\n\nStringify a value into a minimal, readable format.\n\n```js\nvar stringy = require('@alloc/stringy')\n\nfunction inspect(value) {\n  console.log(stringy(value))\n}\n\ninspect({\n  a: 1,\n  b: 2,\n})\n// a = 1\n// b = 2\n\ninspect({\n  items: [1, 2, 3],\n  count: 3,\n})\n// items =\n//   - 1\n//   - 2\n//   - 3\n// count = 3\n\ninspect({\n  user: {\n    name: 'Alec',\n    age: 23,\n  }\n})\n// user =\n//   name = \"Alec\"\n//   age = 23\n\ninspect(function() {\n  return 1 + 1\n})\n// [object Function]\n```\n\n","readmeFilename":"README.md"}