New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

msgdown

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

msgdown - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+4
.travis.yml
language: node_js
node_js:
- "9"
- "10"
+1
-1
{
"name": "msgdown",
"version": "1.0.0",
"version": "1.0.1",
"description": "A simple message formatter for bold, strikthrough, underline, sub, sup, italic and code.",

@@ -5,0 +5,0 @@ "main": "src/msgdown.js",

@@ -6,2 +6,5 @@ msgdown

![msgdown](https://img.shields.io/travis/mattmezza/msgdown.svg?style=for-the-badge)
![logo](https://github.com/mattmezza/msgdown/blob/master/logo.png)

@@ -8,0 +11,0 @@

@@ -25,3 +25,3 @@ const openTag = tag => `<${tag}>`

module.exports = (text, tokens = defaultTokens) => {
tokens = {...defaultTokens, ...tokens}
tokens = Object.assign({}, defaultTokens, tokens)
const appendDefault = () => {

@@ -28,0 +28,0 @@ html += text[index]