Socket
Socket
Sign inDemoInstall

namp

Package Overview
Dependencies
1
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.2 to 0.1.3

9

lib/helpers.js

@@ -30,5 +30,12 @@ var util = require('util');

else {
if (this[other_slot] === undefined) {
this[other_slot] = [];
}
if (this[state_slot] === undefined) {
this[state_slot] = [];
}
// Store a clone of the em/strong states
var other = this[other_slot].slice(),
state = this[state_slot].slice();
state = this[state_slot].slice();

@@ -35,0 +42,0 @@ this[state_slot].unshift(md);

2

package.json
{
"name" : "namp",
"version" : "0.1.2",
"version" : "0.1.3",
"description" : "Markdown parser for Node, with Maruku, GFM, and PHP Extras support, plus more.",

@@ -5,0 +5,0 @@ "keywords" : [ "markdown", "maruku", "gfm", "text processing", "ast" ],

@@ -165,7 +165,2 @@ #!/usr/bin/env node

var time = function() {
var marked = require('../');
main.bench('marked', marked);
};
var bench_load = function() {

@@ -296,4 +291,2 @@ files = {};

bench();
} else if (~process.argv.indexOf('--time')) {
time();
} else {

@@ -300,0 +293,0 @@ main();

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