Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ssh-config

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssh-config - npm Package Compare versions

Comparing version 2.0.0-alpha.3 to 2.0.0-beta.1

1

History.md

@@ -8,2 +8,3 @@ 2.0.0 / 2019-06-??

* Fix: escape + when converting patterns to regexp
* Fix: parameter/value pairs separated with tab charactor

@@ -10,0 +11,0 @@

5

index.js

@@ -230,3 +230,3 @@ 'use strict'

while (chr && chr !== ' ' && chr !== '=') {
while (chr && /[^ \t=]/.test(chr)) {
param += chr

@@ -316,3 +316,3 @@ chr = next()

}
else if (chr === ' ') {
else if (/[ \t]/.test(chr)) {
if (val) {

@@ -341,2 +341,3 @@ results.push(val)

const param = parameter()
// Host "foo bar" baz
const multiple = param.toLowerCase() == 'host'

@@ -343,0 +344,0 @@ const result = {

{
"name": "ssh-config",
"description": "SSH config parser and stringifier",
"version": "2.0.0-alpha.3",
"version": "2.0.0-beta.1",
"author": "Chen Yangjian (https://www.cyj.me)",

@@ -6,0 +6,0 @@ "repository": {

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