From 862fa88e99174d3c853028f126730860074b0dee Mon Sep 17 00:00:00 2001 From: qige2016 <286882998@qq.com> Date: Sat, 13 Jun 2020 23:35:09 +0800 Subject: [PATCH] fix[notEmpty]: set trim => trim() --- plop-templates/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plop-templates/utils.js b/plop-templates/utils.js index 0310ca02..5196a1a8 100644 --- a/plop-templates/utils.js +++ b/plop-templates/utils.js @@ -1,6 +1,6 @@ exports.notEmpty = name => { return v => { - if (!v || v.trim === '') { + if (!v || v.trim() === '') { return `${name} is required` } else { return true