: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
/******/ (() => { // webpackBootstrap
/******/ // The require scope
/******/ var __webpack_require__ = {};
/************************************************************************/
/******/ /* webpack/runtime/define property getters */
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.d(__webpack_exports__, {
"default": () => (/* binding */ warning)
;// CONCATENATED MODULE: ./node_modules/@wordpress/warning/build-module/utils.js
* Object map tracking messages which have been logged, for use in ensuring a
* message is only logged once.
const logged = new Set();
;// CONCATENATED MODULE: ./node_modules/@wordpress/warning/build-module/index.js
// eslint-disable-next-line @wordpress/wp-global-usage
* Shows a warning with `message` if environment is not `production`.
* @param {string} message Message to show in the warning.
* import warning from '@wordpress/warning';
* function MyComponent( props ) {
* warning( '`props.title` was not passed' );
function warning(message) {
// Skip if already logged.
if (logged.has(message)) {
// eslint-disable-next-line no-console
// Throwing an error and catching it immediately to improve debugging
// A consumer can use 'pause on caught exceptions'
// https://github.com/facebook/react/issues/4216
(window.wp = window.wp || {}).warning = __webpack_exports__["default"];