├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── __tests__ ├── addSymbol.ts ├── convert.ts └── extract.ts ├── jest.config.js ├── package.json ├── src ├── index.ts ├── lib │ ├── addSymbol.ts │ ├── convert.ts │ └── extract.ts ├── types │ ├── cryptocurrencies.ts │ └── currencies.ts └── utils │ ├── cryptocurrencies.ts │ └── currencies.ts ├── tsconfig.json ├── tsconfig.test.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [driaug] -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | desktop.ini 3 | .DS_Store 4 | .idea 5 | .vscode 6 | dist 7 | *.log 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/addSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/__tests__/addSymbol.ts -------------------------------------------------------------------------------- /__tests__/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/__tests__/convert.ts -------------------------------------------------------------------------------- /__tests__/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/__tests__/extract.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/addSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/src/lib/addSymbol.ts -------------------------------------------------------------------------------- /src/lib/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/src/lib/convert.ts -------------------------------------------------------------------------------- /src/lib/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/src/lib/extract.ts -------------------------------------------------------------------------------- /src/types/cryptocurrencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/src/types/cryptocurrencies.ts -------------------------------------------------------------------------------- /src/types/currencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/src/types/currencies.ts -------------------------------------------------------------------------------- /src/utils/cryptocurrencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/src/utils/cryptocurrencies.ts -------------------------------------------------------------------------------- /src/utils/currencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/src/utils/currencies.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driaug/current-currency/HEAD/yarn.lock --------------------------------------------------------------------------------