From 63b313f6b26126d3b5c8932e7134d6c9530a503a Mon Sep 17 00:00:00 2001 From: KNKIM Date: Mon, 1 Nov 2021 10:19:19 +0900 Subject: [PATCH] =?UTF-8?q?fn=5FisEmpty=20=ED=95=A8=EC=88=98=20=EB=B3=B4?= =?UTF-8?q?=EC=99=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/js/nlib.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/webapp/js/nlib.js b/src/main/webapp/js/nlib.js index 27a7e4e0..5c709160 100644 --- a/src/main/webapp/js/nlib.js +++ b/src/main/webapp/js/nlib.js @@ -147,6 +147,7 @@ function fn_isEmpty(value) { if(value == null) return true; if(typeof value == "undefined") return true; if(typeof value == "string" && value == "") return true; + if(value == "null") return true; if(Array.isArray(value) && value.length < 1) return true; return false;