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

Version Path
optimacms-0.1.61 spec/dummy/node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.18.0 test/dummy/node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.18.2 test/dummy/node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-5.0.7 node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-5.0.6 node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-5.0.5 node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-5.0.4 node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.16.1 test/dummy/node_modules/@babel/preset-modules/node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.15.2 test/dummy/node_modules/@babel/preset-modules/node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-5.0.3 node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-5.0.2 node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.18.4 test/dummy/node_modules/@babel/preset-modules/node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.18.1 test/dummy/node_modules/@babel/preset-modules/node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/@babel/preset-modules/node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.14.0 test/dummy/node_modules/@babel/preset-modules/node_modules/@babel/types/lib/comments/addComments.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/@babel/preset-modules/node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-5.0.1 node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-4.3.5 node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-5.0.0 node_modules/@babel/types/lib/comments/addComments.js
trusty-cms-4.3.4 node_modules/@babel/types/lib/comments/addComments.js