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

morpheme-match

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

morpheme-match - npm Package Compare versions

Comparing version 1.0.1 to 1.1.0

README.md

4

lib/morpheme-match.js

@@ -6,2 +6,6 @@ // LICENSE : MIT

return Object.keys(expectShape).every(function (key) {
// Ignore start with _ key
if (key[0] === "_") {
return true;
}
var actualValue = token[key];

@@ -8,0 +12,0 @@ // support multiple value

2

package.json

@@ -18,3 +18,3 @@ {

],
"version": "1.0.1",
"version": "1.1.0",
"main": "lib/morpheme-match.js",

@@ -21,0 +21,0 @@ "directories": {

@@ -5,2 +5,6 @@ // LICENSE : MIT

return Object.keys(expectShape).every(key => {
// Ignore start with _ key
if (key[0] === "_") {
return true;
}
const actualValue = token[key];

@@ -7,0 +11,0 @@ // support multiple value

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