├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── README.md ├── example ├── index.html └── lotr_words_location.json ├── index.js ├── lotr.png ├── package.json ├── rollup.config.js └── src ├── compare-value.js ├── constant.js ├── loom.js └── string.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015" ] 3 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | *.tgz -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build/*.zip 2 | test/ -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/README.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/example/index.html -------------------------------------------------------------------------------- /example/lotr_words_location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/example/lotr_words_location.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/index.js -------------------------------------------------------------------------------- /lotr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/lotr.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/compare-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/src/compare-value.js -------------------------------------------------------------------------------- /src/constant.js: -------------------------------------------------------------------------------- 1 | export default function constant(x) { 2 | return () => x; 3 | } 4 | -------------------------------------------------------------------------------- /src/loom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/src/loom.js -------------------------------------------------------------------------------- /src/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbremer/d3-loom/HEAD/src/string.js --------------------------------------------------------------------------------