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

mdast

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mdast - npm Package Compare versions

Comparing version 0.15.0 to 0.15.1

5

History.md

@@ -0,1 +1,6 @@

0.15.1 / 2015-03-27
===================
* Fix runtime `setOptions` ([481e096](https://github.com/wooorm/mdast/commit/481e096))
0.15.0 / 2015-03-27

@@ -2,0 +7,0 @@ ===================

8

lib/parse.js

@@ -1613,2 +1613,4 @@ 'use strict';

self.options = clone(self.options);
self.setOptions(options);

@@ -1628,3 +1630,3 @@ }

var rules = self.rules;
var defaults = self.defaults;
var defaults = self.options;

@@ -1636,3 +1638,3 @@ if (options === null || options === undefined) {

} else {
options = copy(clone(defaults), options);
options = clone(options);
}

@@ -1692,3 +1694,3 @@

Parser.prototype.defaults = defaultOptions;
Parser.prototype.options = defaultOptions;

@@ -1695,0 +1697,0 @@ /*

@@ -256,2 +256,4 @@ 'use strict';

self.options = clone(self.options);
self.setOptions(options);

@@ -270,3 +272,3 @@ }

compilerPrototype.defaults = defaultOptions;
compilerPrototype.options = defaultOptions;

@@ -282,3 +284,3 @@ /**

var self = this;
var defaults = self.defaults;
var defaults = self.options;
var ruleRepetition;

@@ -291,3 +293,3 @@

} else {
options = copy(clone(defaults), options);
options = clone(options);
}

@@ -294,0 +296,0 @@

{
"name": "mdast",
"version": "0.15.0",
"version": "0.15.1",
"description": "Speedy Markdown parser/stringifier for multipurpose analysis",

@@ -5,0 +5,0 @@ "license": "MIT",

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