├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── dist ├── buffered-interpolation.js └── buffered-interpolation.min.js ├── index.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteLee/buffered-interpolation/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteLee/buffered-interpolation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteLee/buffered-interpolation/HEAD/README.md -------------------------------------------------------------------------------- /dist/buffered-interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteLee/buffered-interpolation/HEAD/dist/buffered-interpolation.js -------------------------------------------------------------------------------- /dist/buffered-interpolation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteLee/buffered-interpolation/HEAD/dist/buffered-interpolation.min.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteLee/buffered-interpolation/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteLee/buffered-interpolation/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfiniteLee/buffered-interpolation/HEAD/yarn.lock --------------------------------------------------------------------------------