Haruaki OTAKE

Results 11 comments of Haruaki OTAKE

#19 master branch's nuxt-validate is not released to npm. 😕 `[email protected]`'s source code is [here](https://github.com/lewyuburi/nuxt-validate/tree/f01155f49bccaaf715b85bf8ed9c448e9a9360ce).

Is there any update on this?

I forked and published this package... 😐 If you need it immediately, use https://www.npmjs.com/package/@mole-inc/nuxt-validate

The undici 5.21.0, included in Node.js 18.16.0, seems to be leaking memory. https://github.com/nodejs/node/issues/46435 If you are using [node-fetch-native](https://github.com/unjs/node-fetch-native/#force-using-non-native-version), you may be able to work around this by setting the FORCE_NODE_FETCH...

I think it has been fixed because it was updated to undici 5.22.1 in Node.js 18.17.0.

https://nuxt.com/docs/getting-started/data-fetching#minimize-payload-size Is the reproduction code misusing `pick`? `pick: ['data']` and `transform: data => ({ data: data.data })` operate similarly, but repro code seem to be expecting `transform: data => data.data`....

Thank you for your report. `split(true)` is a very heavy method, and it takes time to investigate. I think the reason the floor isn't being drawn is because the animation...

`split(false)` is completed. In order to reduce the size of GIF animation, if the first and second frames of the animation are the same color, it is often used to...

Sorry, `split(true)` has a lot of bugs.. I have been tempted to rewrite my library. There is a solution by using canvas. ```js xhr.onload = function (e) { var arrayBuffer...

The `onload` was needed. ```js import gifken from 'gifken'; const xhr = new XMLHttpRequest(); xhr.open("GET", './assets/tenor.gif', true); xhr.responseType = "arraybuffer"; xhr.onload = (e) => { const arrayBuffer = e.target["response"]; const...