├── .eslintrc.cjs ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc ├── package.json ├── readme.md ├── src ├── char-at.ts ├── concat.ts ├── counter.ts ├── includes.ts ├── index.ts ├── indexes.ts ├── join.ts ├── length.ts ├── remove.ts ├── replace.ts ├── reverse.ts ├── split.ts ├── substr.ts └── utility.ts ├── test.ts ├── tsconfig.json ├── typestr.png └── yarn.lock /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [alii] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | node_modules 3 | dist 4 | .idea 5 | *.log 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/.prettierrc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/readme.md -------------------------------------------------------------------------------- /src/char-at.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/char-at.ts -------------------------------------------------------------------------------- /src/concat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/concat.ts -------------------------------------------------------------------------------- /src/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/counter.ts -------------------------------------------------------------------------------- /src/includes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/includes.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/indexes.ts -------------------------------------------------------------------------------- /src/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/join.ts -------------------------------------------------------------------------------- /src/length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/length.ts -------------------------------------------------------------------------------- /src/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/remove.ts -------------------------------------------------------------------------------- /src/replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/replace.ts -------------------------------------------------------------------------------- /src/reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/reverse.ts -------------------------------------------------------------------------------- /src/split.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/split.ts -------------------------------------------------------------------------------- /src/substr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/substr.ts -------------------------------------------------------------------------------- /src/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/src/utility.ts -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typestr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/typestr.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/typestr/HEAD/yarn.lock --------------------------------------------------------------------------------