├── .eslintrc ├── .github └── workflows │ ├── codeql-analysis.yml │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── matcher.js ├── package.json ├── spec ├── .eslintrc ├── basic.spec.js └── support │ └── jasmine.json └── too-wordy.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/README.md -------------------------------------------------------------------------------- /matcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/matcher.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/package.json -------------------------------------------------------------------------------- /spec/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/spec/.eslintrc -------------------------------------------------------------------------------- /spec/basic.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/spec/basic.spec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /too-wordy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duereg/too-wordy/HEAD/too-wordy.js --------------------------------------------------------------------------------