jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
24 lines (23 loc) • 683 B
JavaScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* @module helpers/utils
*/
/**
* By default, terser will remove all `console.*` but
* if you use this object it will not be
*/
export const cns = console;
/**
* Mark function as deprecated
*/
export function markDeprecated(method, names = [''], ctx = null) {
return (...args) => {
cns.warn(`Method "${names[0]}" deprecated.` +
(names[1] ? ` Use "${names[1]}" instead` : ''));
return method.call(ctx, ...args);
};
}