Andrew Schmadel

Results 116 comments of Andrew Schmadel

As a compromise, I wonder if we could get types for the _unexpanded_ variant of each response? This would add _some_ bloat to the library, but you could probably accomplish...

> The skipDocumentsValidation flag is handled at the core level of codegen, not at the plugin level, so it should work with all plugins and presets. I don't think this...

Another possibility would be to just make this available as an option on any methods that could potentially throw (ie. `DateTime.fromISO(str, { throwOnInvalid: true })`) It's more verbose, but it'd...

Strongly agree here. This installation procedure unnecessarily opens your users up to a security risk.

I'm actually pretty fascinated that Angular 2 has its own (large and fairly complex) CSS parser. I wonder if the ng2 folks have ever considered pulling it out into a...

As far as I see it, the benefits/drawbacks to combining the two commands are: ### Pros - Simple and consistent experience for Windows users. - Pygments' RTF and HTML output...

Why are you doing a `getAll()` inside of a `find()`? Additionally, there's a small chance that `["catch"]` is invoking some sort of weird behavior in IE's JS parser. Try replacing...

One other thought: You're performing two queries inside of the same transaction. It's possible that there's a bug in angular-indexedDB that's preventing a digest from being triggered immediately after the...

Ah, #19 is definitely of interest to you. Every iteration calls `defer.notify()`, which in turn calls `$rootScope.apply()`. This is going to be _ridiculously inefficient_ for large data sets. Try commenting...

Are you comfortable enough with the native IndexedDB API to write [a variant of your code](http://blogs.microsoft.co.il/gilf/2012/04/18/getting-all-stored-items-in-an-indexeddb-objectstore/) that doesn't use this library and lives entirely outside of Angular? I'm curious if...