@ckeditor/ckeditor5-utils
Version:
Miscellaneous utilities used by CKEditor 5.
12 lines (11 loc) • 445 B
TypeScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module utils/parsebase64encodedobject
*/
/**
* Parses a base64-encoded object and returns the decoded object, or null if the decoding was unsuccessful.
*/
export default function parseBase64EncodedObject(encoded: string): Record<string, any> | null;