"use strict"; /** * @license * SPDX-License-Identifier: Apache-2.0 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.createContextualFragment = void 0; var html_impl_1 = require("../../internals/html_impl"); /** Safely creates a contextualFragment. */ function createContextualFragment(range, html) { return range.createContextualFragment((0, html_impl_1.unwrapHtml)(html)); } exports.createContextualFragment = createContextualFragment;