Derek Shih
Derek Shih
iOS doesn't allow changing volume with JavaScript, only mute/unmute is possible. > On iOS devices, the audio level is always under the user’s physical control. The volume property is not...
Thank you. The code should be easy to integrate, but I'm using different approach(nyc + babel-istanbul) for testing and code coverage, and can't be ran together with current LS test....
I have updated the converter to keep up with latest LS. This project is self-hosting from the beginning, so at least hosting the converter itself is possible. Many of LS...
How about `(.(name)) obj`? ```ls (.name) obj (.(name)) obj ``` compiles to ```js (function(it){ return it.name; })(obj); (function(it){ return it[name]; })(obj); ```
`$Number$` variable is used to identify the specific segment, `d="0"` means a segment is not available and should not be fetched. For example: - segment 1037 d = 95232 -...
I didn't give up. Current version of [livescript-next](/dk00/livescript-next) is good enough for my own projects, I'm happy with it now, and I have no spare time to work on it...
`babel-types` refuses to create AST nodes with type annotations, but the code generator knows annotations and output them correctly. We can build AST with type annotations, by adding them to...
Yes, we can't express `export default x` now. I'm using `export default: x` for default export, this compiles to `export {x as default}`, and it can be imported by `import...