Marc Autret
                                            Marc Autret
                                        
                                    This sounds like a typo: https://github.com/sleepycat/rapid-automated-keyword-extraction/blob/f000cdbcffef3111fbc62cd1d52ce601c7de3a05/src/index.js#L11 Did you mean if(phrase.length < minCharLength) . . . ?
The function [`getFixed`](https://github.com/opentypejs/opentype.js/blob/aa8ad76467a27f086a19a7d3e12479a3d4fd93aa/src/parse.mjs#L41) which deals with Fixed-Point representation (16.16) is implemented as follows: ~~~~ function getFixed(dataView, offset) { const decimal = dataView.getInt16(offset, false); const fraction = dataView.getUint16(offset + 2, false);...