Package Exports
- make-string
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (make-string) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
make-string 
make-string converts all data types to string as JSON.toString.
Installation
npm install make-string
Usage
const makeString = require('make-string');
makeString(25); // '25'
Why?
I need to convert the object to string in configurable way like removing curly braces, with single quote, etc. So I created this module. If you face any issues with this module, Free feel to create the issues here.
options
Options can be passed as optional second param to makeString to configure few things.
quotes: "single" | "double" | "no"(no quotes) - "double"(default)
braces: "true" | "false" - "true"(default)
assignment: "=" (any assignment operator)
How to use
const makeString = require('make-string');
makeString("make-string"); // "make-string"
makeString("make-string", {quotes: 'single'}); // 'make-string'
makeString("make-string", {quotes: 'no'}); // make-string
makeString({package:"make-string"}); // '{"package":"make-string"}'
makeString({package:"make-string"}, {braces: 'false'}); // '"package":"make-string"'
makeString({package:"make-string"}, {assignment: '='}); // '{"package"="make-string"}'
makeString({package:"make-string"}, {assignment: '=', quotes:'no'}); // '{package=make-string}'
makeString({package:"make-string",author:"Ajay"}, {assignment: '=', quotes:'no', seperator:'&'}); // '{package=make-string&author=ajay}'