stringify-object
Advanced tools
Comparing version 3.2.0 to 3.2.1
'use strict'; | ||
const isRegexp = require('is-regexp'); | ||
const isObj = require('is-obj'); | ||
const getOwnEnumPropSymbols = require('get-own-enumerable-property-symbols'); | ||
const getOwnEnumPropSymbols = require('get-own-enumerable-property-symbols').default; | ||
@@ -6,0 +6,0 @@ module.exports = (val, opts, pad) => { |
{ | ||
"name": "stringify-object", | ||
"version": "3.2.0", | ||
"description": "Stringify an object/array like JSON.stringify just without all the double-quotes", | ||
"license": "BSD-2-Clause", | ||
"repository": "yeoman/stringify-object", | ||
"author": { | ||
"name": "Sindre Sorhus", | ||
"email": "sindresorhus@gmail.com", | ||
"url": "sindresorhus.com" | ||
}, | ||
"engines": { | ||
"node": ">=4" | ||
}, | ||
"scripts": { | ||
"test": "xo && mocha" | ||
}, | ||
"files": [ | ||
"index.js" | ||
], | ||
"keywords": [ | ||
"object", | ||
"stringify", | ||
"pretty", | ||
"print", | ||
"dump", | ||
"format", | ||
"type", | ||
"json" | ||
], | ||
"dependencies": { | ||
"get-own-enumerable-property-symbols": "^1.0.1", | ||
"is-obj": "^1.0.1", | ||
"is-regexp": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"mocha": "*", | ||
"xo": "*" | ||
}, | ||
"xo": { | ||
"esnext": true | ||
} | ||
"name": "stringify-object", | ||
"version": "3.2.1", | ||
"description": "Stringify an object/array like JSON.stringify just without all the double-quotes", | ||
"license": "BSD-2-Clause", | ||
"repository": "yeoman/stringify-object", | ||
"author": { | ||
"name": "Sindre Sorhus", | ||
"email": "sindresorhus@gmail.com", | ||
"url": "sindresorhus.com" | ||
}, | ||
"engines": { | ||
"node": ">=4" | ||
}, | ||
"scripts": { | ||
"test": "xo && ava" | ||
}, | ||
"files": [ | ||
"index.js" | ||
], | ||
"keywords": [ | ||
"object", | ||
"stringify", | ||
"pretty", | ||
"print", | ||
"dump", | ||
"format", | ||
"type", | ||
"json" | ||
], | ||
"dependencies": { | ||
"get-own-enumerable-property-symbols": "^2.0.1", | ||
"is-obj": "^1.0.1", | ||
"is-regexp": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"ava": "*", | ||
"xo": "*" | ||
} | ||
} |
@@ -13,3 +13,3 @@ # stringify-object [![Build Status](https://secure.travis-ci.org/yeoman/stringify-object.svg?branch=master)](http://travis-ci.org/yeoman/stringify-object) | ||
``` | ||
$ npm install --save stringify-object | ||
$ npm install stringify-object | ||
``` | ||
@@ -66,3 +66,3 @@ | ||
Type: `string`<br> | ||
Default: `'\t'` | ||
Default: `\t` | ||
@@ -69,0 +69,0 @@ Preferred indentation. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8162
+ Addedget-own-enumerable-property-symbols@2.0.1(transitive)
- Removedget-own-enumerable-property-symbols@1.0.1(transitive)