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

appwrite-utils

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appwrite-utils - npm Package Compare versions

Comparing version 0.2.9 to 0.3.0

2

dist/functions/converters.js

@@ -70,3 +70,3 @@ import { DateTime } from "luxon";

if (value === null || value === undefined || value === "")
return value;
return [];
if (Array.isArray(value)) {

@@ -73,0 +73,0 @@ return value.map((item) => String(item));

{
"name": "appwrite-utils",
"module": "dist/index.js",
"version": "0.2.9",
"version": "0.3.0",
"main": "dist/index.js",

@@ -6,0 +6,0 @@ "types": "dist/index.d.ts",

@@ -72,3 +72,3 @@ import { DateTime } from "luxon";

anyToStringArray(value: any): string[] {
if (value === null || value === undefined || value === "") return value;
if (value === null || value === undefined || value === "") return [];
if (Array.isArray(value)) {

@@ -75,0 +75,0 @@ return value.map((item) => String(item));

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