├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── lib └── index.js ├── package.json ├── readme.md ├── src └── index.js └── test └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reZach/grammarify/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: reZach 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reZach/grammarify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reZach/grammarify/HEAD/LICENSE -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reZach/grammarify/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reZach/grammarify/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reZach/grammarify/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reZach/grammarify/HEAD/src/index.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reZach/grammarify/HEAD/test/test.js --------------------------------------------------------------------------------