@progress/kendo-react-treeview
Version:
React TreeView displays hierarchical data in a traditional tree structure, supports user interaction. KendoReact TreeView package
15 lines (14 loc) • 542 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
const n = (t, e) => t === e.length - 1, s = (t, e) => {
const o = n(t, e);
return t === 0 && !o ? "top" : o ? "bot" : "mid";
};
export {
s as getNodePosition
};