1.0.6 • Published 3 years ago

easyjs-function v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

easyjs-function

整理一些比较特殊的js方法,包括以下范围

  1. 对象数组操作
  2. 表单操作
  3. window操作
  4. 树结构数据操作

Example

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");
1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago