├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── comment-issue.yml │ └── testsuite.yml ├── .gitignore ├── .meteorignore ├── .versions ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── collection-extensions.js ├── package.js ├── test-proxy ├── .gitignore ├── .meteor │ ├── .finished-upgraders │ ├── .gitignore │ ├── .id │ ├── packages │ ├── platforms │ ├── release │ └── versions ├── package-lock.json └── package.json └── tests ├── functions.js ├── tests.coffee └── tests.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/comment-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/.github/workflows/comment-issue.yml -------------------------------------------------------------------------------- /.github/workflows/testsuite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/.github/workflows/testsuite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.meteorignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | test-proxy/ 3 | .github/ 4 | -------------------------------------------------------------------------------- /.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/.versions -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/README.md -------------------------------------------------------------------------------- /collection-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/collection-extensions.js -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/package.js -------------------------------------------------------------------------------- /test-proxy/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | packages/ -------------------------------------------------------------------------------- /test-proxy/.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/test-proxy/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /test-proxy/.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /test-proxy/.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/test-proxy/.meteor/.id -------------------------------------------------------------------------------- /test-proxy/.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/test-proxy/.meteor/packages -------------------------------------------------------------------------------- /test-proxy/.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /test-proxy/.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@3.0.2 2 | -------------------------------------------------------------------------------- /test-proxy/.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/test-proxy/.meteor/versions -------------------------------------------------------------------------------- /test-proxy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/test-proxy/package-lock.json -------------------------------------------------------------------------------- /test-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/test-proxy/package.json -------------------------------------------------------------------------------- /tests/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/tests/functions.js -------------------------------------------------------------------------------- /tests/tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/tests/tests.coffee -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meteor-Community-Packages/meteor-collection-extensions/HEAD/tests/tests.js --------------------------------------------------------------------------------