├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .npmrc ├── .travis.yml ├── .verb.md ├── LICENSE ├── README.md ├── examples ├── geojson.js ├── posts.js ├── tags-function.js └── tags-property.js ├── index.js ├── package.json └── test ├── expected ├── categories-tags.js ├── deeply-nested.js ├── insanely-nested.js ├── issue-10.js ├── nested.js └── tags-array.js ├── fixtures ├── categories-tags.js ├── date-function.js ├── deeply-nested.js ├── insanely-nested.js ├── issue-10.js ├── nested.js └── tags-array.js └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/.verb.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/README.md -------------------------------------------------------------------------------- /examples/geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/examples/geojson.js -------------------------------------------------------------------------------- /examples/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/examples/posts.js -------------------------------------------------------------------------------- /examples/tags-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/examples/tags-function.js -------------------------------------------------------------------------------- /examples/tags-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/examples/tags-property.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/categories-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/expected/categories-tags.js -------------------------------------------------------------------------------- /test/expected/deeply-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/expected/deeply-nested.js -------------------------------------------------------------------------------- /test/expected/insanely-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/expected/insanely-nested.js -------------------------------------------------------------------------------- /test/expected/issue-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/expected/issue-10.js -------------------------------------------------------------------------------- /test/expected/nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/expected/nested.js -------------------------------------------------------------------------------- /test/expected/tags-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/expected/tags-array.js -------------------------------------------------------------------------------- /test/fixtures/categories-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/fixtures/categories-tags.js -------------------------------------------------------------------------------- /test/fixtures/date-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/fixtures/date-function.js -------------------------------------------------------------------------------- /test/fixtures/deeply-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/fixtures/deeply-nested.js -------------------------------------------------------------------------------- /test/fixtures/insanely-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/fixtures/insanely-nested.js -------------------------------------------------------------------------------- /test/fixtures/issue-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/fixtures/issue-10.js -------------------------------------------------------------------------------- /test/fixtures/nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/fixtures/nested.js -------------------------------------------------------------------------------- /test/fixtures/tags-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/fixtures/tags-array.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doowb/group-array/HEAD/test/test.js --------------------------------------------------------------------------------