source: trip-planner-front/node_modules/@babel/types/lib/comments/inheritsComments.js@ 6a80231

Last change on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 543 bytes
RevLine 
[6a3a178]1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = inheritsComments;
7
8var _inheritTrailingComments = require("./inheritTrailingComments");
9
10var _inheritLeadingComments = require("./inheritLeadingComments");
11
12var _inheritInnerComments = require("./inheritInnerComments");
13
14function inheritsComments(child, parent) {
15 (0, _inheritTrailingComments.default)(child, parent);
16 (0, _inheritLeadingComments.default)(child, parent);
17 (0, _inheritInnerComments.default)(child, parent);
18 return child;
19}
Note: See TracBrowser for help on using the repository browser.