source: trip-planner-front/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js@ 59329aa

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

initial commit

  • Property mode set to 100644
File size: 364 bytes
RevLine 
[6a3a178]1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = removePropertiesDeep;
7
8var _traverseFast = require("../traverse/traverseFast");
9
10var _removeProperties = require("./removeProperties");
11
12function removePropertiesDeep(tree, opts) {
13 (0, _traverseFast.default)(tree, _removeProperties.default, opts);
14 return tree;
15}
Note: See TracBrowser for help on using the repository browser.