├── .babelrc ├── .eslintignore ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── lock.yml ├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── eslint.config.js ├── package-scripts.js ├── package.json ├── rollup.config.js ├── src ├── decorator.test.ts ├── decorator.ts ├── index.d.ts ├── index.test.ts ├── index.ts ├── index.types.test.ts ├── isPromise.test.ts ├── isPromise.ts └── types.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | dist 4 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | trailingComma: none 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/package-scripts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/decorator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/src/decorator.test.ts -------------------------------------------------------------------------------- /src/decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/src/decorator.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './decorator' -------------------------------------------------------------------------------- /src/index.types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/src/index.types.test.ts -------------------------------------------------------------------------------- /src/isPromise.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/src/isPromise.test.ts -------------------------------------------------------------------------------- /src/isPromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/src/isPromise.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-calculate/HEAD/yarn.lock --------------------------------------------------------------------------------