gogoend

Results 9 comments of gogoend

```js let invertCase = (str)=>{ let [uA,uZ,ua,uz] = ['A'.charCodeAt(), 'Z'.charCodeAt(), 'a'.charCodeAt(), 'z'.charCodeAt()] return Array.prototype.map.call(str, (item,index)=>{ if (item.charCodeAt() >= uA && item.charCodeAt() = ua && item.charCodeAt()

```js function getValues(data){ let resultObj={}; data.forEach(item=>{ resultObj[item.value]=''; }) return Object.keys(resultObj); } ```

I'm located in China. When I install Node.js like the following command: ``` $ volta install node@16 ``` I often encounter the network issue. The terminal may print: ``` error:...

Recently I encounter a bug may be caused by this issue. I'm working on a feature that implements customize window drag without using `-webkit-app-region` in my app. I add listeners...

> for pnpm > > ``` > // package.json > { > ... > "pnpm": { > "overrides": { > "@parcel/runtime-js": "2.8.3" > } > }, > ... > }...

Sorry, I've clicked a wrong button.

> @gogoend no worries, re-openning emmmm, in fact, I'm trying to do some explorations, and want to view the diff online, but choose the wrong repo, and open this PR...

Besides, I' m trying to explore the generated bundles after running `pnpm run dev`, and notice that the style rules in parent component and nested component are put into a...

I'm trying to explore the source of [parcel-transformer-vue](https://github.com/PlasmoHQ/plasmo/blob/main/core/parcel-transformer-vue/src/index.ts). What I think is, as the style of descendant Vue SFC is imported in `` block rather than `` block, to import...