diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-12-07 01:32:44 -0500 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-12-07 01:32:44 -0500 |
commit | 047bd02ea4f2a7f565ddfb5da9d1c0685d18e08e (patch) | |
tree | e567e9053c03f312923c7dd93392be7f0740b2fc /src/fields/Doc.ts | |
parent | 2b9251f36be19b9fab9ce6ccc9280321c032fc0f (diff) |
work started on field interface --> inheritcance structure
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index a9bc5ee70..3f8de2988 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -576,7 +576,7 @@ export namespace Doc { if (!skipUndefineds || value !== undefined) { // Do we want to filter out undefineds? if (typeof value === 'object' && 'values' in value) { - console.log(value); + //console.log(value); } doc[key] = value; } |