Gajus Kuizinas
Gajus Kuizinas
It would be nice to improve performance of `transliteration`. Currently, it is the hottest function call in my flame chart along with some cryptographic functions. The first step before making...
Only perform transliteration if subject contains characters that are non-printable ASCII characters, i.e. `/^[\u0020-\u007F]*$/`. Related to: https://github.com/dzcpy/transliteration/issues/154
There is no obvious reason for using `object-hash` here and it adds 32kb to the bundle size. https://bundlephobia.com/[email protected]
A property thats writable but not configurable cannot be overwitten. Attempting to overwrite a non-configurable property will result in error equivalent to: ``` TypeError: Cannot redefine property: stack ```
Is anyone working on a Node.js binding for MyHtml?
Documentation gives this example of "c-binary serialization": ``` js console.time('binary serialization'); for(var i = 0; i < 100000; i++) { obj.test = input; } console.timeEnd('binary serialization'); ``` This is just...
It sounds like an interesting project. However, it is not clear whether it has wider applications than LRU cache, e.g. could it be used to share an object between multiple...
I have a project with the following structure: ```ts src/utilities/stringToPath.ts src/utilities/index.ts src/bin/server.ts ``` `src/utilities/index.ts` simply re-exports utilities, e.g. ```ts export { stringToPath } from './stringToPath'; export { parseUrl } from...
e.g. getting many false-positives for `@babel/` and `@types/` ``` 1 │ @babel/polyfill 2 │ @react-stately/checkbox 3 │ @testing-library/cypress 4 │ @tsconfig/node12 5 │ @types/express 6 │ @types/gapi.auth2 7 │ @types/http-terminator...
This appears to be the preferred routing library now, https://github.com/acdlite/redux-router#for-a-more-stable-official-binding-between-redux-and-react-router-try-redux-simple-router.