├── .gitignore ├── LICENSE.md ├── README.md ├── dist └── font-feature-fibbing.js ├── examples ├── logo.png └── simple.html ├── package.json ├── src └── index.js └── test ├── index.html ├── tests.js └── utils ├── chai.js ├── mocha.css └── mocha.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/README.md -------------------------------------------------------------------------------- /dist/font-feature-fibbing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/dist/font-feature-fibbing.js -------------------------------------------------------------------------------- /examples/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/examples/logo.png -------------------------------------------------------------------------------- /examples/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/examples/simple.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/test/index.html -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/test/tests.js -------------------------------------------------------------------------------- /test/utils/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/test/utils/chai.js -------------------------------------------------------------------------------- /test/utils/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/test/utils/mocha.css -------------------------------------------------------------------------------- /test/utils/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethormandy/font-feature-fibbing/HEAD/test/utils/mocha.js --------------------------------------------------------------------------------