Gili Tzabari

Results 145 issues of Gili Tzabari

dynamic-dom.js is supposed to translate `foo.style.transform` into `foo.style.webkitTransform` under Chrome, but this no longer seems to work. I am using Chrome 27.0.1453.116 m Here is a simple testcase: http://jsfiddle.net/n2Pyy/2/ The...

I just spent an hour trying to figure out why prefix-free was skipping my CSS files. My HTML file read: `` notice the uppercase letter in "Stylesheet". According to http://www.w3.org/TR/2011/WD-html5-20110525/links.html#linkTypes:...

Fixes https://github.com/tensorflow/java/issues/268

Per https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#assertion-functions the following Typescript code is valid: ``` /** * Throws an Error if condition is false. * * @param {boolean} condition a condition * @param {Error} [error =...

Please update the code to accept ".cts" and ".mts" files as discussed at https://github.com/microsoft/TypeScript/issues/27957#issuecomment-926932331 Currently, I am getting the following error: `ERROR: Unable to parse C:\Users\Gili\Documents\requirements.js\src\ArrayAsserter.mts: Unexpected token, expected "from"...

Per https://jsdoc.app/howto-es2015-classes.html: > You don't need to use tags such as @class and @constructor with ES 2015 classes—JSDoc automatically identifies classes and their constructors simply by parsing your code. ES...

Version 2.7.2 When building a library that depends on better-docs 2.7.2 using Yarn 3 I get the following warning: ``` YN0002: │ better-docs@npm:2.7.2 [f6a77] doesn't provide prop-types (p5e6a8), requested by...

Version 2.3.2 If an interface extends some parent interface then any inherited members do not show up. Users don't even have a way of knowing that extension is even taking...

Given: ``` interface Collection {} ``` How can one document type parameter `T`?

Given this input: ``` /** * The encodings supported by the terminal. */ enum TerminalEncoding { /** * A terminal that does not support any colors. */ NONE, /** *...