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

pickle-ts

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pickle-ts - npm Package Compare versions

Comparing version 0.9.2 to 0.9.3

2

dist/router.js

@@ -227,3 +227,3 @@ "use strict";

return this.component.childRoute(name);
var route = this.component.children().filter(function (x) { return isRouted(x) && x.routeName == name; });
var route = this.component.children().filter(function (x) { return isRouted(x) && util_1.equalsIgnoreCase(x.routeName, name); });
return !route.length ? undefined : route[0];

@@ -230,0 +230,0 @@ };

{
"name": "pickle-ts",
"version": "0.9.2",
"version": "0.9.3",
"author": "pickle",

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

@@ -175,3 +175,3 @@ import { Component } from './component'

const route = this.component.children().filter(x => isRouted(x) && x.routeName == name)
const route = this.component.children().filter(x => isRouted(x) && equalsIgnoreCase (x.routeName, name))
return ! route.length ? undefined : route[0] as IRouted

@@ -178,0 +178,0 @@ }

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