waiting
waiting
I think common behaviour is: ``` GET /get?foo=12&bar=23 ``` Should got ```json { foo: "12", bar: "23", } ``` and then ``` GET /get?foo[]=12&foo[]=23 ``` Should got ```json { foo:...
Hi, i have created new one, based on this project. ### Fixing and merging - [Ignore padding on decode]( https://github.com/beatgammit/base64-js/issues/45 ) - [ReferenceError thrown](https://github.com/beatgammit/base64-js/issues/50) - [Performance improvements and fixed a...
> > > @Raincal 提到的正是我期望的,我之前以为 npm 自身的机制会支持这个,想不到是打包工具做的支持,不过确实解析过程应该是打包工具控制的; > > 顺便给后来的人 FYI ,我用的是 rollup 来进行打包的,我查了下这个工具里做和 webpack mainField 类似的事情是通过配置 rollup-plugin-node-resolve 插件来达成目的的; > > Thanks! 对于npm公共模块项目,省心的办法是 > TypeScript 输出 ES6 -> rollup 打包成...
> https://github.com/yanhaijing/jslib-base > @waitingsong 推荐用这个,把你的改成了命令行工具 得空看看
> 自荐下 TS 4.7 版本的特性~ https://mp.weixin.qq.com/s/JrLUIKW0HnOfZu1ROrTsNw 404?
You can try v3.5.1 with kernel32:OutputDebugStringW()
Yes, it supports plan js. 1. change `import` syntax to `require()` 2. remove type def simple example ```ts import ref from 'ref-napi' import { DModel as M } from 'win32-api'...
```js const point = StructFactory(DS.POINT) point.x = 100 ``` to ```ts const point = StructFactory(DS.POINT) point.x = 100 ```
try : ```js import { DModel as M, DTypes as W, DStruct as DS, } from 'win32-api' // to const { DModel as M, DTypes as W, DStruct as DS,...
> Also I downloaded your repo (to try typescript version) and tried to run "npm run bootstrap" but it could not find lerna command. You can install lerna as global...