Oskari Noppa

Results 35 comments of Oskari Noppa

Interesting, I was under the impression that Chrome etc already wouldn't load the font if `-webkit-text-security` worked, since then the font would basically have no effect anyway. I'm pretty sure...

What browser are you using? At least in the [demo page](https://noppa.github.io/text-security.html) the caret height seems fine in Chrome. This definitely could be an issue in the font definition, but it...

Sounds like a useful feature. Should be pretty easy to add to options and somewhere around https://github.com/noppa/xmllint-wasm/blob/5cb574455b7d893d28a4a577e7fbacf9c215c533/src/index.js#L37 I can accept PRs, or might look at implementing this myself in a...

I have just published vesion 5, and it has an option `modifyArguments` that lets you do this. ```typescript const result = await xmllint.validateXML({ xml: myXml, schema: mySchema, modifyArguments(args) { return...

The reassignment pattern works fine with TypeScript. ```typescript const strLen = (str: string) => str.length const isLongEnough = (len: number) => len > 3 const toArray = (val: T): T[]...