@minatojs/driver-sqlite
Advanced tools
Comparing version 3.2.4 to 3.2.5
@@ -94,3 +94,3 @@ "use strict"; | ||
types: ["list"], | ||
dump: (value) => value.join(","), | ||
dump: (value) => Array.isArray(value) ? value.join(",") : value, | ||
load: (value) => value ? value.split(",") : [] | ||
@@ -97,0 +97,0 @@ }); |
{ | ||
"name": "@minatojs/driver-sqlite", | ||
"version": "3.2.4", | ||
"version": "3.2.5", | ||
"description": "SQLite Driver for Minato", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38588