Files
goTorrent/torrent-project/node_modules/material-ui/test-utils/unwrap.js

11 lines
210 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = unwrap;
// weak
function unwrap(component) {
return component.Naked ? unwrap(component.Naked) : component;
}