├── .eslintrc.json ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .npmignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── binding.gyp ├── index.cpp ├── index.d.ts ├── index.js ├── package.json └── test.mjs /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/ 3 | build/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/index.cpp -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoltrexKeyva/string-toolkit/HEAD/test.mjs --------------------------------------------------------------------------------