eczn*
eczn*
``` ts const nativeSetImmediate = global.setImmediate global.setImmediate = (...args) => { // DO NOT REMOVE THIS 👇 // native code return nativeSetImmediate(...args) } console.log('vue isNative fixed') ``` an temporal way...
emmm, how about **React Native bundling**? i have to decode xml on my React Native App, what should i do?
ooops, i found https://www.npmjs.com/package/react-native-xml2js to resolve my problem. 😂
is it inferable in extends clause ? ``` ts type MinRange = I extends (>= infer T) ? T : never; type T0 = MinRange= 100)>; // T0 will be...
can it works well with template type ? ``` ts type Hex = (>=0) & (
can control flow analysis be able to infer the final types in an addition between two vars typed with Inequality Types ? ``` ts function add(a: (>= 1), b: (>=...
how can i use Interval Types to create an integer range ? ``` ts type MyRange1 = 1 | 2 | 3 | 4 | 5; type MyRange2 = (>=1)...
恭喜 贺电
 感觉如果类数组对象的原型指向 Array.prototype 他可以被认为是一个数组了。 ----  毕竟 typeof {} 跟 typeof [] 结果是一样的。
233 很接近 但是还是有所区别