This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
forked from DarrenPaulWright/object-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
77 lines (75 loc) · 2.73 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/**
* @name Installation
* @summary
*
* ```
* npm install object-agent
* ```
* _Requires Babel 7.2+_
*/
/**
* @name Docs
* @summary
* - Path
* - [get](docs/get.md)
* - [set](docs/set.md)
* - [erase](docs/erase.md)
* - [unset](docs/unset.md)
* - [path utility functions](docs/pathUtilities.md)
* - Analysis
* - [forIn](docs/forIn.md)
* - [forOwn](docs/forOwn.md)
* - [forOwnReduce](docs/forOwnReduce.md)
* - [mapOwn](docs/mapOwn.md)
* - [traverse](docs/traverse.md)
* - Comparison
* - [diffUpdate](docs/diffUpdate.md)
* - [intersection](docs/intersection.md)
* - Testing
* - [has](docs/has.md)
* - [isEmpty](docs/isEmpty.md)
* - [isEqual](docs/isEqual.md)
* - [deepEqual](docs/deepEqual.md)
* - Data Generation
* - [nestedEach](docs/nestedEach.md)
* - [combo](docs/combo.md)
* - [mix](docs/mix.md)
* - [powerset](docs/powerset.md)
* - Other
* - [superimpose](docs/superimpose.md)
* - [clone](docs/clone.md)
* - [pull](docs/pull.md)
* - [repeat](docs/repeat.md)
* - [fill](docs/fill.md)
*/
export { default as get } from './src/get';
export { default as has } from './src/has';
export { default as set } from './src/set';
export { default as unset } from './src/unset';
export { default as erase } from './src/erase';
export { default as forIn } from './src/forIn';
export { default as forOwn } from './src/forOwn';
export { default as forOwnReduce } from './src/forOwnReduce';
export { default as mapOwn } from './src/mapOwn';
export { default as traverse } from './src/traverse';
export { default as isEmpty } from './src/isEmpty';
export { default as pull } from './src/pull';
export { default as isEqual } from './src/isEqual';
export { default as deepEqual } from './src/deepEqual';
export { default as diffUpdate } from './src/diffUpdate';
export { default as intersection } from './src/intersection';
export { default as superimpose } from './src/superimpose';
export { default as clone } from './src/clone';
export { default as combo } from './src/combo';
export { default as mix } from './src/mix';
export { default as powerset } from './src/powerset';
export { default as nestedEach } from './src/nestedEach';
export { default as repeat } from './src/repeat';
export { default as fill } from './src/fill';
export { default as walkPath } from './src/utility/walkPath';
export { default as appendToPath } from './src/utility/appendToPath';
export { default as firstInPath } from './src/utility/firstInPath';
export { default as initialInPath } from './src/utility/initialInPath';
export { default as lastInPath } from './src/utility/lastInPath';
export { default as tailInPath } from './src/utility/tailInPath';
export { default as countInString } from './src/utility/countInString';