Devin Rhode

Results 293 comments of Devin Rhode

I believe linting tools _could_ print out file url's like @spina mentioned, and that hyperterm _should_ support this as they would be sort of standard clickable links (just not http)...

I guess... solution is to add `'use client';`... https://stackoverflow.com/questions/74255356/typeerror-react-createcontext-is-not-a-function-nextjs-13-formik-with-typesc

Code sample provided without warranty ```tsx import { objectEntries, objectFromEntries } from 'ts-extras'; /** * Creates an object composed of the inverted keys and values of `object`. * * Return...

There's like no dependencies on this project. I think I ran the test suite with the latest 16.x and it passed. Therefore, 16.x seems to be good.

@betaorbust If you want some/any of these tweaks, let me know, I can submit a PR with the ones you want, and then branch off of that and work on...

Works for me on mac. Want me to clone and run a test suite to make sure it works? It's been working great for me for 2-3 days.

Ok going to submit a PR for this... but first let's agree on an API: I'm using advanced compilation, and only need one file compiled with the simple option, so...

How could I basically say... ``` javascript grunt.runMoreStuff({ 'closure-compiler': { frontend: { js: manifest.background.scripts, jsOutputFile: 'compiled/background.cc.js', maxBuffer: 500, options: { 'compilation_level': 'ADVANCED_OPTIMIZATIONS', 'language_in': 'ECMASCRIPT5_STRICT' } } } }); ``` Any...

The above code is much more readable because of all the shared characters on the right side of the assignment, `= document.getElementById('`

Could even be expanded to align the ending parens: ``` javascript var home = document.getElementById('home' ); var longerVariableName = document.getElementById('otherThing'); ```