1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

fix for boolean values getting stripped when running processObject

This commit is contained in:
andz-bb 2024-03-21 16:10:52 +00:00
parent ed94459fd8
commit 55e0145fdb

View file

@ -94,7 +94,7 @@ export async function processObject<T extends Record<string, any>>(
for (const key of Object.keys(object || {})) {
if (object[key] != null) {
const val = object[key]
let parsedValue
let parsedValue = val
if (typeof val === "string") {
parsedValue = await processString(object[key], context, opts)
} else if (typeof val === "object") {