Tate Barber
Tate Barber
Maybe this is not an error specific to https://deno.land/[email protected]/uuid/mod.ts. 🤷 I'll keep debugging. Possibly related to #411
@vsDizzy what was your `sourceMapPathOverrides` configuration? I'm curious if this issue is also related to https://github.com/denoland/deno/issues/11874
Digging up this old issue. I have a use case where I need to use postgres to store bytes and I'd like to unit test it using this in memory...
+1 for this I have a use case where I am testing a slice that results from go routines and the order varies. Maybe the method signature can use flags?...
We can leave comments in as well. Primarily, it condenses media queries (though performance doesn't really matter on a `build` version).
That'd be a good feature. Along with stripping out comments, `css-condense` does rearrange the order of sass styles that are imported due to the fact that it assumes media queries...
Not sure if it's best practice to merge from master. Maybe I should have plucked the gulp/travis tests only?
+1 to this feature. I find myself prefixing a lot of conditional behavior with `.not`
Will do! :+1:
I prefer to be as strict as possible and avoid using `any`. Instead I use `unknown` or `never`. [User defined type guards](https://www.typescriptlang.org/docs/handbook/2/narrowing.html#using-type-predicates) are how I: 1. Validate the response JSON...