« get me outta code hell

index.js « data « composite « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/composite/data/index.js
blob: c80bb3503df8734c6624ff0dc49a14dedef7b263 (plain)
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
// #composite/data
//
// Entries here may depend on entries in #composite/control-flow.
//

// Utilities which act on generic objects

export {default as withPropertiesFromObject} from './withPropertiesFromObject.js';
export {default as withPropertyFromObject} from './withPropertyFromObject.js';

// Utilities which act on generic lists

export {default as excludeFromList} from './excludeFromList.js';

export {default as fillMissingListItems} from './fillMissingListItems.js';
export {default as withUniqueItemsOnly} from './withUniqueItemsOnly.js';

export {default as withFilteredList} from './withFilteredList.js';
export {default as withMappedList} from './withMappedList.js';
export {default as withSortedList} from './withSortedList.js';

export {default as withPropertyFromList} from './withPropertyFromList.js';
export {default as withPropertiesFromList} from './withPropertiesFromList.js';

export {default as withFlattenedList} from './withFlattenedList.js';
export {default as withUnflattenedList} from './withUnflattenedList.js';

export {default as withIndexInList} from './withIndexInList.js';
export {default as withNearbyItemFromList} from './withNearbyItemFromList.js';

// Utilities which act on slightly more particular data forms
// (probably, containers of particular kinds of values)

export {default as withSum} from './withSum.js';