Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

capricorncd/obj2str

Repository files navigation

obj2str

object(Object, Function, Array) to string

Downloads Version License

npm i -S obj2str
# or
yarn add obj2str

Usage

./test/index.js

const { obj2str } = require('obj2str')
// test object
const obj = {
 a: 1111,
 b: 'fsdfs,d\'fsd',
 b2: 'this\'s an object',
 b3: `This's a test object`,
 212: 'xxdfdf',
 c: {
 cc: '3333',
 c2: 'sdfsf"d"fsd',
 c3: {
 d: 2222
 }
 },
 k: null,
 f: undefined,
 g: 0,
 fn: function(str) {
 return str + 'hello world!'
 },
 fn2: (a) => a + 10,
 arr: [
 122,
 'xxx',
 {
 aa: 232434,
 bb: 'bb'
 },
 'dsfsdf'
 ]
}
const str = obj2str(obj, {
 // initSpaces: 4,
 // indentSpaces: 4,
 prefix: 'const obj = ',
 // doubleQuotes: true,
 // keyQuote: true
})
console.log(str)
node ./test/index.js

print

const obj = {
 212: 'xxdfdf',
 a: 1111,
 b: 'fsdfs,d\'fsd',
 b2: 'this\'s an object',
 b3: 'This\'s a test object',
 c: {
 cc: '3333',
 c2: 'sdfsf"d"fsd',
 c3: {
 d: 2222
 }
 },
 k: null,
 f: undefined,
 g: 0,
 fn: function(str) {
 return str + 'hello world!'
 },
 fn2: (a) => a + 10,
 arr: [
 122,
 'xxx',
 {
 aa: 232434,
 bb: 'bb'
 },
 'dsfsdf'
 ]
}

Methods

Method Parameters Description
obj2str (o: any, options?: TypeOptions) return string

options

Props Type Description
initSpaces number Default indentation space for all lines, default: 0
indentSpaces number Number of spaces to indent when formatting, default: 2
prefix string Concatenation string prefix of the first line, default: ''
doubleQuotes boolean Whether the string uses double quotes, default: false
keyQuote boolean Whether the key of the object uses quote, default: false

About

object/function/array to string

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /