├── .eslintIgnore ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── example ├── getUser.js └── index.js ├── package.json ├── src ├── __tests__ │ └── index.test.ts ├── helper │ ├── __tests__ │ │ ├── getValue.test.ts │ │ └── trans.test.ts │ ├── getValue.ts │ └── trans.ts ├── index.ts └── type │ └── config.ts ├── tsconfig.json └── yarn.lock /.eslintIgnore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/.eslintIgnore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | coverage 4 | yarn-error.log 5 | node_modules 6 | lib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/README.md -------------------------------------------------------------------------------- /example/getUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/example/getUser.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/example/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/helper/__tests__/getValue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/src/helper/__tests__/getValue.test.ts -------------------------------------------------------------------------------- /src/helper/__tests__/trans.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/src/helper/__tests__/trans.test.ts -------------------------------------------------------------------------------- /src/helper/getValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/src/helper/getValue.ts -------------------------------------------------------------------------------- /src/helper/trans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/src/helper/trans.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/type/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/src/type/config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxferoo/itranslator/HEAD/yarn.lock --------------------------------------------------------------------------------