## `fontnik` ### `range(options: object, callback: function)` `options` is an object with options: * `start: number` * `end: number` * `fontstack: ?string` Get a range of glyphs as a gzipped protocol buffer. ### `conf(options: object)` `options` is an object with options: * `fonts: Array` Configure node-fontnik. ### `getRange(start: number, end: number): Array` Generate an array of the numbers from `start` to `end`. `start` must be less than `end` and both numbers must be in the inclusive range 0 to 65535. ### `faces(): Array` Return an array of supported font faces, as strings. ## `new fontnik.Glyphs()` Create a new Glyphs object. ### `glyphs.codepoints(face: string): Array` Get an array of numbers corresponding to unicode points where this font face has coverage. ### `glyphs.range(face: string, range: string, chars: Array, callback: function)` ### `glyphs.serialize(): Buffer`