├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── index.js ├── package.json ├── test ├── baboon.png ├── basic.js ├── expected.b64 ├── index.js └── resolve.js └── transform.js /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/package.json -------------------------------------------------------------------------------- /test/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/test/baboon.png -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/test/basic.js -------------------------------------------------------------------------------- /test/expected.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/test/expected.b64 -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/test/index.js -------------------------------------------------------------------------------- /test/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/test/resolve.js -------------------------------------------------------------------------------- /transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/urify/HEAD/transform.js --------------------------------------------------------------------------------