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.5.0 to 1.6.0

2

package.json
{
"name": "ciam-commons",
"version": "1.5.0",
"version": "1.6.0",
"description": "Common types and functions for CIAM",

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

@@ -24,4 +24,4 @@ export namespace Check {

export function notEmpty(s: string, name: string) {
if (s.length == 0) throw new Error(`${name} cannot be empty`);
export function notEmpty(obj: string | Array<any>, name: string) {
if (obj.length == 0) throw new Error(`${name} cannot be empty`);
}

@@ -28,0 +28,0 @@

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