├── .eslintrc ├── .gitignore ├── .storybook └── config.js ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo ├── favicon.png ├── index.html └── src │ ├── assets │ ├── DSC_8122_1024x1024.jpeg │ ├── github.svg │ └── twitter.svg │ ├── components │ ├── App │ │ ├── App.js │ │ ├── App.scss │ │ └── index.js │ ├── ComponentName │ │ ├── ComponentName.js │ │ ├── ComponentName.scss │ │ └── index.js │ ├── FiddleEmbed │ │ ├── FiddleEmbed.js │ │ ├── FiddleEmbed.scss │ │ └── index.js │ ├── Footer │ │ ├── Footer.js │ │ ├── Footer.scss │ │ └── index.js │ ├── Header │ │ ├── Header.js │ │ ├── Header.scss │ │ └── index.js │ ├── HorizontalRule │ │ ├── HorizontalRule.js │ │ ├── HorizontalRule.scss │ │ └── index.js │ ├── MaxWidthWrapper │ │ ├── MaxWidthWrapper.js │ │ ├── MaxWidthWrapper.scss │ │ └── index.js │ └── Nav │ │ ├── Nav.js │ │ ├── Nav.scss │ │ └── index.js │ ├── index.js │ └── style-variables.scss ├── documentation ├── comparators.md ├── markup.md └── predicates.md ├── nwb.config.js ├── package.json ├── src ├── components │ ├── BaseCollectionHelper │ │ ├── BaseCollectionHelper.js │ │ ├── BaseCollectionHelper.test.js │ │ └── index.js │ ├── Every │ │ ├── Every.js │ │ ├── Every.stories.js │ │ ├── Every.test.js │ │ └── index.js │ ├── Filter │ │ ├── Filter.js │ │ ├── Filter.stories.js │ │ ├── Filter.test.js │ │ └── index.js │ ├── Find │ │ ├── Find.js │ │ ├── Find.stories.js │ │ ├── Find.test.js │ │ └── index.js │ ├── First │ │ ├── First.js │ │ ├── First.stories.js │ │ ├── First.test.js │ │ └── index.js │ ├── Last │ │ ├── Last.js │ │ ├── Last.stories.js │ │ ├── Last.test.js │ │ └── index.js │ ├── Map │ │ ├── Map.js │ │ ├── Map.stories.js │ │ ├── Map.test.js │ │ └── index.js │ ├── Reject │ │ ├── Reject.js │ │ ├── Reject.stories.js │ │ ├── Reject.test.js │ │ └── index.js │ ├── Reverse │ │ ├── Reverse.js │ │ ├── Reverse.stories.js │ │ ├── Reverse.test.js │ │ └── index.js │ ├── Some │ │ ├── Some.js │ │ ├── Some.stories.js │ │ ├── Some.test.js │ │ └── index.js │ └── Sort │ │ ├── Sort.js │ │ ├── Sort.stories.js │ │ ├── Sort.test.js │ │ └── index.js ├── constants │ └── index.js ├── helpers │ ├── README.md │ ├── error-message.helpers.js │ ├── misc.helpers.js │ ├── misc.helpers.test.js │ ├── story │ │ └── FilterController.js │ └── test.helpers.js ├── index.js └── utils │ ├── README.md │ ├── apply-predicate-to-collection-with.js │ ├── filter-by.js │ ├── filter-by.test.js │ ├── find-by.js │ ├── find-by.test.js │ ├── reject-by.js │ ├── reject-by.test.js │ ├── sort-by.js │ └── sort-by.test.js ├── test ├── README.md └── composition.test.js ├── tools ├── add-component.js ├── performance-checks.css └── performance-checks.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/README.md -------------------------------------------------------------------------------- /demo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/favicon.png -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/src/assets/DSC_8122_1024x1024.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/assets/DSC_8122_1024x1024.jpeg -------------------------------------------------------------------------------- /demo/src/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/assets/github.svg -------------------------------------------------------------------------------- /demo/src/assets/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/assets/twitter.svg -------------------------------------------------------------------------------- /demo/src/components/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/App/App.js -------------------------------------------------------------------------------- /demo/src/components/App/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/App/App.scss -------------------------------------------------------------------------------- /demo/src/components/App/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './App'; 2 | -------------------------------------------------------------------------------- /demo/src/components/ComponentName/ComponentName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/ComponentName/ComponentName.js -------------------------------------------------------------------------------- /demo/src/components/ComponentName/ComponentName.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/ComponentName/ComponentName.scss -------------------------------------------------------------------------------- /demo/src/components/ComponentName/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ComponentName'; 2 | -------------------------------------------------------------------------------- /demo/src/components/FiddleEmbed/FiddleEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/FiddleEmbed/FiddleEmbed.js -------------------------------------------------------------------------------- /demo/src/components/FiddleEmbed/FiddleEmbed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/FiddleEmbed/FiddleEmbed.scss -------------------------------------------------------------------------------- /demo/src/components/FiddleEmbed/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FiddleEmbed'; 2 | -------------------------------------------------------------------------------- /demo/src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /demo/src/components/Footer/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/Footer/Footer.scss -------------------------------------------------------------------------------- /demo/src/components/Footer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Footer'; 2 | -------------------------------------------------------------------------------- /demo/src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/Header/Header.js -------------------------------------------------------------------------------- /demo/src/components/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/Header/Header.scss -------------------------------------------------------------------------------- /demo/src/components/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Header'; 2 | -------------------------------------------------------------------------------- /demo/src/components/HorizontalRule/HorizontalRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/HorizontalRule/HorizontalRule.js -------------------------------------------------------------------------------- /demo/src/components/HorizontalRule/HorizontalRule.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/HorizontalRule/HorizontalRule.scss -------------------------------------------------------------------------------- /demo/src/components/HorizontalRule/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './HorizontalRule'; 2 | -------------------------------------------------------------------------------- /demo/src/components/MaxWidthWrapper/MaxWidthWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/MaxWidthWrapper/MaxWidthWrapper.js -------------------------------------------------------------------------------- /demo/src/components/MaxWidthWrapper/MaxWidthWrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/MaxWidthWrapper/MaxWidthWrapper.scss -------------------------------------------------------------------------------- /demo/src/components/MaxWidthWrapper/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MaxWidthWrapper'; 2 | -------------------------------------------------------------------------------- /demo/src/components/Nav/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/Nav/Nav.js -------------------------------------------------------------------------------- /demo/src/components/Nav/Nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/components/Nav/Nav.scss -------------------------------------------------------------------------------- /demo/src/components/Nav/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Nav'; 2 | -------------------------------------------------------------------------------- /demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/index.js -------------------------------------------------------------------------------- /demo/src/style-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/demo/src/style-variables.scss -------------------------------------------------------------------------------- /documentation/comparators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/documentation/comparators.md -------------------------------------------------------------------------------- /documentation/markup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/documentation/markup.md -------------------------------------------------------------------------------- /documentation/predicates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/documentation/predicates.md -------------------------------------------------------------------------------- /nwb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/nwb.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/package.json -------------------------------------------------------------------------------- /src/components/BaseCollectionHelper/BaseCollectionHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/BaseCollectionHelper/BaseCollectionHelper.js -------------------------------------------------------------------------------- /src/components/BaseCollectionHelper/BaseCollectionHelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/BaseCollectionHelper/BaseCollectionHelper.test.js -------------------------------------------------------------------------------- /src/components/BaseCollectionHelper/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './BaseCollectionHelper'; 2 | -------------------------------------------------------------------------------- /src/components/Every/Every.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Every/Every.js -------------------------------------------------------------------------------- /src/components/Every/Every.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Every/Every.stories.js -------------------------------------------------------------------------------- /src/components/Every/Every.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Every/Every.test.js -------------------------------------------------------------------------------- /src/components/Every/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Every'; 2 | -------------------------------------------------------------------------------- /src/components/Filter/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Filter/Filter.js -------------------------------------------------------------------------------- /src/components/Filter/Filter.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Filter/Filter.stories.js -------------------------------------------------------------------------------- /src/components/Filter/Filter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Filter/Filter.test.js -------------------------------------------------------------------------------- /src/components/Filter/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Filter'; 2 | -------------------------------------------------------------------------------- /src/components/Find/Find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Find/Find.js -------------------------------------------------------------------------------- /src/components/Find/Find.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Find/Find.stories.js -------------------------------------------------------------------------------- /src/components/Find/Find.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Find/Find.test.js -------------------------------------------------------------------------------- /src/components/Find/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Find'; 2 | -------------------------------------------------------------------------------- /src/components/First/First.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/First/First.js -------------------------------------------------------------------------------- /src/components/First/First.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/First/First.stories.js -------------------------------------------------------------------------------- /src/components/First/First.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/First/First.test.js -------------------------------------------------------------------------------- /src/components/First/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './First'; 2 | -------------------------------------------------------------------------------- /src/components/Last/Last.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Last/Last.js -------------------------------------------------------------------------------- /src/components/Last/Last.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Last/Last.stories.js -------------------------------------------------------------------------------- /src/components/Last/Last.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Last/Last.test.js -------------------------------------------------------------------------------- /src/components/Last/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Last'; 2 | -------------------------------------------------------------------------------- /src/components/Map/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Map/Map.js -------------------------------------------------------------------------------- /src/components/Map/Map.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Map/Map.stories.js -------------------------------------------------------------------------------- /src/components/Map/Map.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Map/Map.test.js -------------------------------------------------------------------------------- /src/components/Map/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Map'; 2 | -------------------------------------------------------------------------------- /src/components/Reject/Reject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Reject/Reject.js -------------------------------------------------------------------------------- /src/components/Reject/Reject.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Reject/Reject.stories.js -------------------------------------------------------------------------------- /src/components/Reject/Reject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Reject/Reject.test.js -------------------------------------------------------------------------------- /src/components/Reject/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Reject'; 2 | -------------------------------------------------------------------------------- /src/components/Reverse/Reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Reverse/Reverse.js -------------------------------------------------------------------------------- /src/components/Reverse/Reverse.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Reverse/Reverse.stories.js -------------------------------------------------------------------------------- /src/components/Reverse/Reverse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Reverse/Reverse.test.js -------------------------------------------------------------------------------- /src/components/Reverse/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Reverse'; 2 | -------------------------------------------------------------------------------- /src/components/Some/Some.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Some/Some.js -------------------------------------------------------------------------------- /src/components/Some/Some.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Some/Some.stories.js -------------------------------------------------------------------------------- /src/components/Some/Some.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Some/Some.test.js -------------------------------------------------------------------------------- /src/components/Some/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Some'; 2 | -------------------------------------------------------------------------------- /src/components/Sort/Sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Sort/Sort.js -------------------------------------------------------------------------------- /src/components/Sort/Sort.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Sort/Sort.stories.js -------------------------------------------------------------------------------- /src/components/Sort/Sort.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/components/Sort/Sort.test.js -------------------------------------------------------------------------------- /src/components/Sort/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Sort'; 2 | -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/helpers/README.md -------------------------------------------------------------------------------- /src/helpers/error-message.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/helpers/error-message.helpers.js -------------------------------------------------------------------------------- /src/helpers/misc.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/helpers/misc.helpers.js -------------------------------------------------------------------------------- /src/helpers/misc.helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/helpers/misc.helpers.test.js -------------------------------------------------------------------------------- /src/helpers/story/FilterController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/helpers/story/FilterController.js -------------------------------------------------------------------------------- /src/helpers/test.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/helpers/test.helpers.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/README.md -------------------------------------------------------------------------------- /src/utils/apply-predicate-to-collection-with.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/apply-predicate-to-collection-with.js -------------------------------------------------------------------------------- /src/utils/filter-by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/filter-by.js -------------------------------------------------------------------------------- /src/utils/filter-by.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/filter-by.test.js -------------------------------------------------------------------------------- /src/utils/find-by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/find-by.js -------------------------------------------------------------------------------- /src/utils/find-by.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/find-by.test.js -------------------------------------------------------------------------------- /src/utils/reject-by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/reject-by.js -------------------------------------------------------------------------------- /src/utils/reject-by.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/reject-by.test.js -------------------------------------------------------------------------------- /src/utils/sort-by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/sort-by.js -------------------------------------------------------------------------------- /src/utils/sort-by.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/src/utils/sort-by.test.js -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/test/README.md -------------------------------------------------------------------------------- /test/composition.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/test/composition.test.js -------------------------------------------------------------------------------- /tools/add-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/tools/add-component.js -------------------------------------------------------------------------------- /tools/performance-checks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/tools/performance-checks.css -------------------------------------------------------------------------------- /tools/performance-checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/tools/performance-checks.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-collection-helpers/HEAD/yarn.lock --------------------------------------------------------------------------------