Swap-Aggregator-Subgraph/node_modules/yaml/dist/addComment.js
2022-07-03 07:27:35 +05:30

14 lines
452 B
JavaScript

"use strict";
exports.addCommentBefore = addCommentBefore;
exports.addComment = addComment;
function addCommentBefore(str, indent, comment) {
if (!comment) return str;
const cc = comment.replace(/[\s\S]^/gm, `$&${indent}#`);
return `#${cc}\n${indent}${str}`;
}
function addComment(str, indent, comment) {
return !comment ? str : comment.indexOf('\n') === -1 ? `${str} #${comment}` : `${str}\n` + comment.replace(/^/gm, `${indent || ''}#`);
}