jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
22 lines (21 loc) • 653 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/string
*/
export const kebabCase = (key) => {
return key
.replace(/([A-Z])([A-Z])([a-z])/g, '$1-$2$3')
.replace(/([a-z])([A-Z])/g, '$1-$2')
.replace(/[\s_]+/g, '-')
.toLowerCase();
};
export const CamelCaseToKebabCase = (key) => {
return key
.replace(/([A-Z])([A-Z])([a-z])/g, '$1-$2$3')
.replace(/([a-z])([A-Z])/g, '$1-$2')
.toLowerCase();
};