├── .eslintrc.js ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── as-safely.test.ts ├── as-safely.ts └── index.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/package.json -------------------------------------------------------------------------------- /src/as-safely.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/src/as-safely.test.ts -------------------------------------------------------------------------------- /src/as-safely.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/src/as-safely.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './as-safely'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuitoSato/as-safely/HEAD/tsconfig.json --------------------------------------------------------------------------------