Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
tools: fix nits in tools/doc/common.js
  • Loading branch information
vsemozhetbyt committed Mar 25, 2018
commit b13c89783d48dcd2df06fdac1edb8a77050bdfc0
9 changes: 2 additions & 7 deletions tools/doc/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
const yaml = require('js-yaml');

function isYAMLBlock(text) {
return !!text.match(/^<!-- YAML/);
return /^<!-- YAML/.test(text);
}

exports.isYAMLBlock = isYAMLBlock;

function arrify(value) {
return Array.isArray(value) ? value : [value];
}
Expand All @@ -32,11 +30,8 @@ function extractAndParseYAML(text) {
}

meta.changes = meta.changes || [];
for (const entry of meta.changes) {
entry.description = entry.description.replace(/^\^\s*/, '');
}

return meta;
}

exports.extractAndParseYAML = extractAndParseYAML;
module.exports = { isYAMLBlock, extractAndParseYAML };