├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── vue2-filters.js └── vue2-filters.min.js ├── package.json ├── src ├── array │ ├── filterBy.js │ ├── find.js │ ├── index.js │ ├── limitBy.js │ └── orderBy.js ├── index.js ├── other │ ├── bytes.js │ ├── currency.js │ ├── index.js │ ├── number.js │ ├── ordinal.js │ ├── percent.js │ └── pluralize.js ├── string │ ├── capitalize.js │ ├── index.js │ ├── lowercase.js │ ├── placeholder.js │ ├── repeat.js │ ├── reverse.js │ ├── truncate.js │ ├── uppercase.js │ └── wrap.js └── util │ └── index.js ├── test ├── filters.spec.js └── karma.conf.js ├── types └── index.d.ts └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/README.md -------------------------------------------------------------------------------- /dist/vue2-filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/dist/vue2-filters.js -------------------------------------------------------------------------------- /dist/vue2-filters.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/dist/vue2-filters.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/package.json -------------------------------------------------------------------------------- /src/array/filterBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/array/filterBy.js -------------------------------------------------------------------------------- /src/array/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/array/find.js -------------------------------------------------------------------------------- /src/array/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/array/index.js -------------------------------------------------------------------------------- /src/array/limitBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/array/limitBy.js -------------------------------------------------------------------------------- /src/array/orderBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/array/orderBy.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/index.js -------------------------------------------------------------------------------- /src/other/bytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/other/bytes.js -------------------------------------------------------------------------------- /src/other/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/other/currency.js -------------------------------------------------------------------------------- /src/other/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/other/index.js -------------------------------------------------------------------------------- /src/other/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/other/number.js -------------------------------------------------------------------------------- /src/other/ordinal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/other/ordinal.js -------------------------------------------------------------------------------- /src/other/percent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/other/percent.js -------------------------------------------------------------------------------- /src/other/pluralize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/other/pluralize.js -------------------------------------------------------------------------------- /src/string/capitalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/capitalize.js -------------------------------------------------------------------------------- /src/string/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/index.js -------------------------------------------------------------------------------- /src/string/lowercase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/lowercase.js -------------------------------------------------------------------------------- /src/string/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/placeholder.js -------------------------------------------------------------------------------- /src/string/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/repeat.js -------------------------------------------------------------------------------- /src/string/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/reverse.js -------------------------------------------------------------------------------- /src/string/truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/truncate.js -------------------------------------------------------------------------------- /src/string/uppercase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/uppercase.js -------------------------------------------------------------------------------- /src/string/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/string/wrap.js -------------------------------------------------------------------------------- /src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/src/util/index.js -------------------------------------------------------------------------------- /test/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/test/filters.spec.js -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freearhey/vue2-filters/HEAD/webpack.config.js --------------------------------------------------------------------------------