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

@nmtjs/type

Package Overview
Dependencies
Maintainers
0
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nmtjs/type - npm Package Compare versions

Comparing version 0.4.5 to 0.4.6

12

dist/types/number.js

@@ -60,3 +60,3 @@ import { Type, TypeBoxError } from '@sinclair/typebox';

maximum: value,
...exclusive ? {} : {
...!exclusive ? {} : {
exclusiveMaximum: value

@@ -71,3 +71,3 @@ }

minimum: value,
...exclusive ? {} : {
...!exclusive ? {} : {
exclusiveMinimum: value

@@ -134,3 +134,3 @@ }

maximum: value,
...exclusive ? {} : {
...!exclusive ? {} : {
exclusiveMaximum: value

@@ -145,3 +145,3 @@ }

minimum: value,
...exclusive ? {} : {
...!exclusive ? {} : {
exclusiveMinimum: value

@@ -220,3 +220,3 @@ }

maximum: this.encode(value),
...exclusive ? {} : {
...!exclusive ? {} : {
exclusiveMaximum: this.encode(value)

@@ -231,3 +231,3 @@ }

minimum: `${value}`,
...exclusive ? {} : {
...!exclusive ? {} : {
exclusiveMinimum: `${value}`

@@ -234,0 +234,0 @@ }

@@ -24,3 +24,3 @@ {

"temporal-polyfill": "^0.2.5",
"@nmtjs/common": "0.4.5"
"@nmtjs/common": "0.4.6"
},

@@ -30,3 +30,3 @@ "devDependencies": {

"temporal-polyfill": "^0.2.5",
"@nmtjs/common": "0.4.5"
"@nmtjs/common": "0.4.6"
},

@@ -40,3 +40,3 @@ "files": [

],
"version": "0.4.5",
"version": "0.4.6",
"scripts": {

@@ -43,0 +43,0 @@ "build": "neemata-build -p neutral --root=./src './**/*.ts'",

@@ -71,3 +71,3 @@ import {

maximum: value,
...(exclusive ? {} : { exclusiveMaximum: value }),
...(!exclusive ? {} : { exclusiveMaximum: value }),
},

@@ -83,3 +83,3 @@ }),

minimum: value,
...(exclusive ? {} : { exclusiveMinimum: value }),
...(!exclusive ? {} : { exclusiveMinimum: value }),
},

@@ -150,3 +150,3 @@ }),

maximum: value,
...(exclusive ? {} : { exclusiveMaximum: value }),
...(!exclusive ? {} : { exclusiveMaximum: value }),
},

@@ -162,3 +162,3 @@ }),

minimum: value,
...(exclusive ? {} : { exclusiveMinimum: value }),
...(!exclusive ? {} : { exclusiveMinimum: value }),
},

@@ -241,3 +241,3 @@ }),

maximum: this.encode(value),
...(exclusive ? {} : { exclusiveMaximum: this.encode(value) }),
...(!exclusive ? {} : { exclusiveMaximum: this.encode(value) }),
},

@@ -253,3 +253,3 @@ }),

minimum: `${value}`,
...(exclusive ? {} : { exclusiveMinimum: `${value}` }),
...(!exclusive ? {} : { exclusiveMinimum: `${value}` }),
},

@@ -256,0 +256,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