Skip to content

Commit 6a9674b

Browse files
committed
Fixing _.emtpy -> _.isEmpty
1 parent ecb0291 commit 6a9674b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/lib/pattern_assembler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const pattern_assembler = function () {
149149
var markdownFileContents = fs.readFileSync(markdownFileName, 'utf8');
150150

151151
var markdownObject = markdown_parser.parse(markdownFileContents);
152-
if (!_.empty(markdownObject)) {
152+
if (!_.isEmpty(markdownObject)) {
153153
//set keys and markdown itself
154154
currentPattern.patternDescExists = true;
155155
currentPattern.patternDesc = markdownObject.markdown;

0 commit comments

Comments
 (0)