UNPKG

@ckeditor/ckeditor5-integrations-common

Version:

This package implements common utility modules for integration projects.

11 lines (10 loc) 413 B
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * Converts a kebab-case string to camelCase. * @param str - The kebab-case string (e.g., "font-size"). * @returns The camelCase string (e.g., "fontSize"). */ export declare function kebabToCamelCase(str: string): string;