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

ciam-commons

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ciam-commons - npm Package Compare versions

Comparing version 1.6.0 to 1.6.1

2

dist/main.d.ts

@@ -10,3 +10,3 @@ export declare namespace Check {

function strictFlag(flag: string, message?: string): void;
function notEmpty(s: string, name: string): void;
function notEmpty(obj: string | Array<any>, name: string): void;
function min(n: number, min: number, name: string): void;

@@ -13,0 +13,0 @@ function max(n: number, max: number, name: string): void;

@@ -27,4 +27,4 @@ export var Check;

Check.strictFlag = strictFlag;
function notEmpty(s, name) {
if (s.length == 0)
function notEmpty(obj, name) {
if (obj.length == 0)
throw new Error(`${name} cannot be empty`);

@@ -31,0 +31,0 @@ }

{
"name": "ciam-commons",
"version": "1.6.0",
"version": "1.6.1",
"description": "Common types and functions for CIAM",

@@ -5,0 +5,0 @@ "scripts": {

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