Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
253 Bytes
/* @flow */
import formatTreeNode from './formatTreeNode';
import type { Options } from './../options';
import type { TreeNode } from './../tree';
export default (node: TreeNode, options: Options): string =>
formatTreeNode(node, false, 0, options);