├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── appveyor.yml ├── bin └── cli ├── lib ├── functions.js ├── index.js └── parts │ ├── arms_left.txt │ ├── arms_right.txt │ ├── arms_symmetric.txt │ ├── bodies_left.txt │ ├── bodies_right.txt │ ├── bodies_symmetric.txt │ ├── cheeks.txt │ ├── eyes.txt │ └── mouths_noses.txt ├── oji.svg └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/cli: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/'); -------------------------------------------------------------------------------- /lib/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/lib/functions.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/parts/arms_left.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/lib/parts/arms_left.txt -------------------------------------------------------------------------------- /lib/parts/arms_right.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/lib/parts/arms_right.txt -------------------------------------------------------------------------------- /lib/parts/arms_symmetric.txt: -------------------------------------------------------------------------------- 1 | 凸 2 | 〜 3 | ┌∩┐ 4 | ∩ 5 | ╭∩╮ -------------------------------------------------------------------------------- /lib/parts/bodies_left.txt: -------------------------------------------------------------------------------- 1 | ( 2 | [ 3 | ༼ 4 | ʕ 5 | ໒( 6 | / -------------------------------------------------------------------------------- /lib/parts/bodies_right.txt: -------------------------------------------------------------------------------- 1 | ) 2 | ] 3 | ༽ 4 | ʔ 5 | )७ 6 | \ -------------------------------------------------------------------------------- /lib/parts/bodies_symmetric.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/lib/parts/bodies_symmetric.txt -------------------------------------------------------------------------------- /lib/parts/cheeks.txt: -------------------------------------------------------------------------------- 1 | . 2 | ✿ 3 | ˵ 4 | v 5 | > 6 | < 7 | * 8 | ” 9 | = 10 | ~ 11 | ∗ 12 | : -------------------------------------------------------------------------------- /lib/parts/eyes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/lib/parts/eyes.txt -------------------------------------------------------------------------------- /lib/parts/mouths_noses.txt: -------------------------------------------------------------------------------- 1 | ω 2 | _ 3 | ਊ 4 | ︿ 5 | o 6 | 〜 7 | 〰 8 | ∧ 9 | д 10 | ۝ 11 | ڡ 12 | ʖ 13 | ▽ 14 | ∀ 15 | ◡ -------------------------------------------------------------------------------- /oji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/oji.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxczaki/oji/HEAD/package.json --------------------------------------------------------------------------------