├── .gitignore ├── .npmignore ├── .prettierrc.json ├── README.md ├── index.d.ts ├── index.js ├── index.test.ts ├── index.ts ├── jest.config.js ├── package.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .prettierrc.json 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/index.js -------------------------------------------------------------------------------- /index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/index.test.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeburden/next-absolute-url/HEAD/yarn.lock --------------------------------------------------------------------------------