Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Fix for Issue 15 #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/yaml.js
Expand Up @@ -238,8 +238,10 @@ Parser.prototype.parse = function() {
case 'int':
return parseInt(this.advanceValue())
case 'true':
return true
this.advance();
return true;
case 'false':
this.advance();
return false
}
}
Expand Down