New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

prosemirror-utils

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prosemirror-utils - npm Package Compare versions

Comparing version 0.7.4 to 0.7.5

11

dist/index.js

@@ -539,3 +539,12 @@ 'use strict';

var node = dom.node.childNodes[dom.offset];
return node && node.nodeType !== Node.TEXT_NODE ? node : dom.node;
if (dom.node.nodeType === Node.TEXT_NODE) {
return dom.node.parentNode;
}
if (!node || node.nodeType === Node.TEXT_NODE) {
return dom.node;
}
return node;
};

@@ -542,0 +551,0 @@

2

package.json
{
"name": "prosemirror-utils",
"version": "0.7.4",
"version": "0.7.5",
"description": "Utils library for ProseMirror",

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

Sorry, the diff of this file is not supported yet

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