├── .editorconfig ├── .github ├── contributing.md ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .npmignore ├── .nycrc.yml ├── .travis.yml ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── index.js ├── shallow-populate.js └── utils.js ├── mocha.opts ├── package.json └── test ├── shallow-populate.general.test.js └── shallow-populate.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.npmignore -------------------------------------------------------------------------------- /.nycrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.nycrc.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/shallow-populate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/lib/shallow-populate.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/lib/utils.js -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- 1 | -u bdd --recursive --exit test/ 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/package.json -------------------------------------------------------------------------------- /test/shallow-populate.general.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/test/shallow-populate.general.test.js -------------------------------------------------------------------------------- /test/shallow-populate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mattchewone/feathers-shallow-populate/HEAD/test/shallow-populate.test.js --------------------------------------------------------------------------------