From 4c57a004a7755c51679ec134c6ed1a8482910e78 Mon Sep 17 00:00:00 2001 From: Robat Williams Date: Mon, 18 Dec 2023 16:30:49 +0000 Subject: [PATCH] Explanation for null --- src/functions/functions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/functions/functions.js b/src/functions/functions.js index 9d9438c..ec54fe1 100644 --- a/src/functions/functions.js +++ b/src/functions/functions.js @@ -146,6 +146,7 @@ function cotAnswer(completion, separator) { function toEntityProperty(value) { if (value === null) { + // There is no concept of null in Excel's data model return ''; } else if (typeof value !== 'object') { return value;