Sha256: 347a893facda5f9b0ca92d009f1e5a6c5bb370eba62b12c94988b951fbbea8ea
Contents?: true
Size: 448 Bytes
Versions: 62
Compression:
Stored size: 448 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = addComments; function addComments(node, type, comments) { if (!comments || !node) return node; const key = `${type}Comments`; if (node[key]) { if (type === "leading") { node[key] = comments.concat(node[key]); } else { node[key] = node[key].concat(comments); } } else { node[key] = comments; } return node; }
Version data entries
62 entries across 61 versions & 12 rubygems