├── .github └── workflows │ ├── branches.yml │ └── master.yml ├── .gitignore ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-interactive-tools.cjs └── releases │ └── yarn-3.2.4.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── assets └── logo.svg ├── index.d.ts ├── lib ├── add.d.ts ├── conditional.d.ts ├── extends.d.ts ├── falsy.d.ts ├── fill.d.ts ├── first.d.ts ├── greater-than.d.ts ├── is.d.ts ├── larger-than.d.ts ├── last.d.ts ├── length-of.d.ts ├── logic.d.ts ├── mul.d.ts ├── not.d.ts ├── optional.d.ts ├── overwrite.d.ts ├── rest.d.ts ├── reverse-rest.d.ts ├── reverse.d.ts ├── same-length.d.ts ├── shift.d.ts ├── slice.d.ts ├── sub.d.ts ├── truncate.d.ts └── union.d.ts ├── package.json ├── tests ├── add.ts ├── fill.ts ├── greater-than.ts ├── index.d.ts ├── slice.ts ├── tsconfig.json └── tslint.json ├── tsconfig.json ├── tsconfig.prod.json └── yarn.lock /.github/workflows/branches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/.github/workflows/branches.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.4.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/.yarn/releases/yarn-3.2.4.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/index.d.ts -------------------------------------------------------------------------------- /lib/add.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/add.d.ts -------------------------------------------------------------------------------- /lib/conditional.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/conditional.d.ts -------------------------------------------------------------------------------- /lib/extends.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/extends.d.ts -------------------------------------------------------------------------------- /lib/falsy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/falsy.d.ts -------------------------------------------------------------------------------- /lib/fill.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/fill.d.ts -------------------------------------------------------------------------------- /lib/first.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/first.d.ts -------------------------------------------------------------------------------- /lib/greater-than.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/greater-than.d.ts -------------------------------------------------------------------------------- /lib/is.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/is.d.ts -------------------------------------------------------------------------------- /lib/larger-than.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/larger-than.d.ts -------------------------------------------------------------------------------- /lib/last.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/last.d.ts -------------------------------------------------------------------------------- /lib/length-of.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/length-of.d.ts -------------------------------------------------------------------------------- /lib/logic.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/logic.d.ts -------------------------------------------------------------------------------- /lib/mul.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/mul.d.ts -------------------------------------------------------------------------------- /lib/not.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/not.d.ts -------------------------------------------------------------------------------- /lib/optional.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/optional.d.ts -------------------------------------------------------------------------------- /lib/overwrite.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/overwrite.d.ts -------------------------------------------------------------------------------- /lib/rest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/rest.d.ts -------------------------------------------------------------------------------- /lib/reverse-rest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/reverse-rest.d.ts -------------------------------------------------------------------------------- /lib/reverse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/reverse.d.ts -------------------------------------------------------------------------------- /lib/same-length.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/same-length.d.ts -------------------------------------------------------------------------------- /lib/shift.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/shift.d.ts -------------------------------------------------------------------------------- /lib/slice.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/slice.d.ts -------------------------------------------------------------------------------- /lib/sub.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/sub.d.ts -------------------------------------------------------------------------------- /lib/truncate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/truncate.d.ts -------------------------------------------------------------------------------- /lib/union.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/lib/union.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/package.json -------------------------------------------------------------------------------- /tests/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tests/add.ts -------------------------------------------------------------------------------- /tests/fill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tests/fill.ts -------------------------------------------------------------------------------- /tests/greater-than.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tests/greater-than.ts -------------------------------------------------------------------------------- /tests/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tests/index.d.ts -------------------------------------------------------------------------------- /tests/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tests/slice.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tests/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/tsconfig.prod.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantila/meta-types/HEAD/yarn.lock --------------------------------------------------------------------------------