Socket
Socket
Sign inDemoInstall

@mdx-js/react

Package Overview
Dependencies
Maintainers
4
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mdx-js/react - npm Package Compare versions

Comparing version 2.0.0-ci.42 to 2.0.0-ci.43

4

package.json
{
"name": "@mdx-js/react",
"version": "2.0.0-ci.42+6a27dbd6",
"version": "2.0.0-ci.43+e3d94388",
"description": "React implementation for MDX",

@@ -49,3 +49,3 @@ "repository": "mdx-js/mdx",

},
"gitHead": "6a27dbd6a98962a702c0b6b2894f7b58eefb0de3"
"gitHead": "e3d94388cf428fdaefeca3fe26abe313de1a87c0"
}

@@ -43,4 +43,4 @@ const React = require('react')

function mdx(type, props) {
const args = arguments
function mdx(type, props, ...rest) {
const args = [type, props, ...rest]
const mdxType = props && props.mdxType

@@ -55,3 +55,3 @@

const newProps = {}
for (let key in props) {
for (const key in props) {
/* istanbul ignore else - folks putting stuff in `prototype`. */

@@ -58,0 +58,0 @@ if (hasOwnProperty.call(props, key)) {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc