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

@finnair/v-validation

Package Overview
Dependencies
Maintainers
4
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@finnair/v-validation - npm Package Compare versions

Comparing version 3.1.0 to 4.0.0

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

# [4.0.0](https://github.com/finnair/v-validation/compare/v3.2.0...v4.0.0) (2022-11-07)
**Note:** Version bump only for package @finnair/v-validation
# [3.1.0](https://github.com/finnair/v-validation/compare/v3.0.0...v3.1.0) (2022-10-24)

@@ -8,0 +16,0 @@

11

dist/scrap.d.ts

@@ -1,10 +0,1 @@

declare class A {
private readonly a;
constructor(a: string);
getA(): string;
}
declare class B extends A {
readonly b: string;
constructor(a: string, b: string);
}
declare const b: B;
export {};
"use strict";
class A {
constructor(a) {
this.a = a;
}
getA() {
return this.a;
}
}
class B extends A {
constructor(a, b) {
super(a);
this.b = b;
}
}
const b = new B('a', 'b');
console.log(b);
b['a'] = 'not allowed';
console.log(b.getA());
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("@finnair/path");
let array = [1, 2, 3, 4]; // [1, undefined]
// $[1] = undefined
// $[2] = undefined
path_1.Path.of(1).set(array, undefined);
{
"name": "@finnair/v-validation",
"version": "3.1.0",
"version": "4.0.0",
"private": false,

@@ -27,3 +27,3 @@ "description": "V-validation core package",

"dependencies": {
"@finnair/path": "^3.1.0",
"@finnair/path": "^4.0.0",
"@types/deep-equal": "1.0.1",

@@ -34,3 +34,3 @@ "@types/uuid-validate": "0.0.1",

},
"gitHead": "5182a63fa61cc1f5c8991e1482c5bbffe14798c3"
"gitHead": "d6540b51c4f1c57563602f66bd3157637703529b"
}
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