Socket
Socket
Sign inDemoInstall

unified

Package Overview
Dependencies
11
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.1.4 to 6.1.5

4

index.js
'use strict';
/* Dependencies. */
var has = require('has');
var extend = require('extend');

@@ -17,2 +16,3 @@ var bail = require('bail');

var slice = [].slice;
var own = {}.hasOwnProperty;

@@ -149,3 +149,3 @@ /* Process pipeline. */

/* Get `key`. */
return (has(namespace, key) && namespace[key]) || null;
return (own.call(namespace, key) && namespace[key]) || null;
}

@@ -152,0 +152,0 @@

{
"name": "unified",
"version": "6.1.4",
"version": "6.1.5",
"description": "Pluggable text processing interface",

@@ -29,3 +29,2 @@ "license": "MIT",

"extend": "^3.0.0",
"has": "^1.0.1",
"is-plain-obj": "^1.1.0",

@@ -40,3 +39,3 @@ "trough": "^1.0.0",

"esmangle": "^1.0.0",
"nyc": "^10.0.0",
"nyc": "^11.0.0",
"remark-cli": "^3.0.0",

@@ -43,0 +42,0 @@ "remark-preset-wooorm": "^3.0.0",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc