Brian M Hunt

Results 219 comments of Brian M Hunt

Essentially we've a project compiling Typescript with Webpack + Babel, and without the `/index` it errors on the `require` statement. @ctcarton Do you have any additional details that might help...

Absolutely - agree on all points - thanks for adding the note :)

Given a binding translator (like i18next), there are three ways I think it could be employed: 1. A binding provider (i.e. `tko.provider.i18n`) - converts text nodes by running them through...

@miellaby those are fantastic suggestions, thank you

Noting: https://metacpan.org/pod/distribution/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod?_ke=eyJrbF9lbWFpbCI6ICJicmlhbm1odW50QGdtYWlsLmNvbSIsICJrbF9jb21wYW55X2lkIjogImU3WUMzdSJ9#A_Localization_Horror_Story:_It_Could_Happen_To_You

Noting: https://mathiasbynens.be/notes/javascript-identifiers-es6 > In ES2015, identifiers must start with $, _, or any symbol with the Unicode derived core property ID_Start. > The rest of the identifier can contain $,...

Noting: https://github.com/tc39/proposal-regexp-unicode-property-escapes#other-examples ```ts const regexIdentifierStart = /[$_\p{ID_Start}]/u; const regexIdentifierPart = /[$_\u200C\u200D\p{ID_Continue}]/u; const regexIdentifierName = /^(?:[$_\p{ID_Start}])(?:[$_\u200C\u200D\p{ID_Continue}])*$/u; ```

@avickers Thanks for posting this. I'll be mulling it. Is there a handy guide for SSoT that explains the key concepts?

Got it, that's helpful for helping me mull this. 😁

Thanks @maskmaster , @tomhanax the answer & playground are very helpful. [direct link to the SO question](https://stackoverflow.com/questions/71319489)