Socket
Socket
Sign inDemoInstall

figgy-pudding

Package Overview
Dependencies
0
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.4.1 to 3.5.0

15

CHANGELOG.md

@@ -5,2 +5,17 @@ # Change Log

<a name="3.5.0"></a>
# [3.5.0](https://github.com/zkat/figgy-pudding/compare/v3.4.1...v3.5.0) (2018-08-25)
### Bug Fixes
* **node:** get rid of Object.entries to add node6 support back ([074f779](https://github.com/zkat/figgy-pudding/commit/074f779))
### Features
* **node:** add node@10 to CI config ([78b8937](https://github.com/zkat/figgy-pudding/commit/78b8937))
<a name="3.4.1"></a>

@@ -7,0 +22,0 @@ ## [3.4.1](https://github.com/zkat/figgy-pudding/compare/v3.4.0...v3.4.1) (2018-08-16)

6

index.js

@@ -50,3 +50,3 @@ 'use strict'

for (let p of this.__providers) {
const iter = p.entries ? p.entries(matcher) : Object.entries(p)
const iter = p.entries ? p.entries(matcher) : entries(p)
for (let [key, val] of iter) {

@@ -195,1 +195,5 @@ if (matcher(key) && !seen.has(key)) {

}
function entries (obj) {
return Object.keys(obj).map(k => [k, obj[k]])
}

2

package.json
{
"name": "figgy-pudding",
"version": "3.4.1",
"version": "3.5.0",
"description": "Delicious, festive, cascading config/opts definitions",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc