Remove redundant cast

This commit is contained in:
Paul Roub 2018-03-21 09:23:13 -04:00
parent de18d8a726
commit f69a82f7bc
2 changed files with 2 additions and 2 deletions

View File

@ -841,7 +841,7 @@ Renderer.prototype.hr = function() {
Renderer.prototype.list = function(body, ordered, start) {
var type = ordered ? 'ol' : 'ul',
startatt = (ordered && +start !== 1) ? (' start="' + start + '"') : '';
startatt = (ordered && start !== 1) ? (' start="' + start + '"') : '';
return '<' + type + startatt + '>\n' + body + '</' + type + '>\n';
};

2
marked.min.js vendored

File diff suppressed because one or more lines are too long