├── .github ├── FUNDING.yml └── dababy.jpg ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src └── dababy.ts ├── tsconfig.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: aidenybai 2 | -------------------------------------------------------------------------------- /.github/dababy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/.github/dababy.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test*.html 3 | dist/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/package.json -------------------------------------------------------------------------------- /src/dababy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/src/dababy.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/dababy/HEAD/yarn.lock --------------------------------------------------------------------------------