mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:09:29 +08:00
15 lines
No EOL
364 B
Text
15 lines
No EOL
364 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = removePropertiesDeep;
|
|
|
|
var _traverseFast = require("../traverse/traverseFast");
|
|
|
|
var _removeProperties = require("./removeProperties");
|
|
|
|
function removePropertiesDeep(tree, opts) {
|
|
(0, _traverseFast.default)(tree, _removeProperties.default, opts);
|
|
return tree;
|
|
} |