1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00

Return null.

This commit is contained in:
Rob Rix 2015-10-21 15:57:23 -04:00
parent 27f01cc43f
commit 2aa2e49f41

View File

@ -67,7 +67,7 @@
}
function term(term, a, b) {
if (term.extract == null || term.unwrap == null) { return; }
if (term.extract == null || term.unwrap == null) { return null; }
return syntax(term.unwrap, a, b, term);
}