# easyjs-function **Repository Path**: akshow/easyjs-function ## Basic Information - **Project Name**: easyjs-function - **Description**: No description available - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-04-22 - **Last Updated**: 2023-05-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # easyjs-function > 整理一些比较特殊的js方法,包括以下范围 ## Docs ## [使用文档 ](https://gitee.com/akshow/easyjs-function-docs/tree/master/docs) 1. 对象数组操作 2. 表单操作 3. window操作 4. 树结构数据操作 ## Example ```js import { treeAndPro } from "easyjs-function"; let c = [ { name: 'ling', age: 34, children:[ { name: 'ling2', age: 123 }, { name: 'ling3', age: 456 }, ] }, { name: 'ling4', age: 232 } ] treeAndPro(c, "newKey", "1234"); ```