Kevin Ramharak

Results 83 comments of Kevin Ramharak
trafficstars

I guess it is 😄 About the contents of your post. The package.json shows a polyfill in the devDependencies. My guess is that the polyfill is injected during the test...

It seems that the current version is `3.10.3`? So this issue is now a feature request to be able to select previous less versions?

I wonder what te motivation for the second argument of `split('=', 2)` is. The [docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split#Parameters) state it is a limiter and notes: > The left-over text is not returned in...

That is actually a good idea, might as well add some simple validation logic. But what happens on invalid input?

paste of that versions `package.json`: https://gist.github.com/KevinRamharak/e1d4f51d3302fe59164795c1338f4bac

I was trying to build a file explorer for https://github.com/kevinramharak/playground-browser-fs but I ran into so many build and bundle errors i gave up. No hurries. I can manage with vanilla...

I took some time to implement a [Vue 3 template](https://github.com/kevinramharak/typescript-playground-plugin-vue), im not familiar with the whole reactive API but it should be an interesting alternative.

Yes its wrapping the playground plugin architecture to implement a Vue 'runtime'. I haven't gotten around to write up a demo, but its a good excuse to prototype with Vue...

I ran into the same issue, I ended just copying the `Validation` type and pulling it into my own source code: ```ts /** * This is a stupid fix for...

This depends on the bundler you are using as stated in the example you are referencing: > //You could also inport the css via a CSS Loader in your JS...