@ckeditor/ckeditor5-utils
Version:
Miscellaneous utilities used by CKEditor 5.
17 lines (16 loc) • 468 B
JavaScript
/**
* @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/isiterable
*/
/**
* Checks if value implements iterator interface.
*
* @param value The value to check.
* @returns True if value implements iterator interface.
*/
export default function isIterable(value) {
return !!(value && value[Symbol.iterator]);
}