Francisco Presencia
Francisco Presencia
### Is your feature request related to a problem? It becomes a bit cumbersome to write all the object definitions all the time. ### Describe the solution you'd like Export...
Amazing project! A feature request :) The current documentation reads "Once you've got that, you'll then need to add a couple of routes to your Express server:" ```js // Add...
Right now with all the modules that use Passport OAuth2, the verify function (2nd parameter of a Strategy) has this schema and workflow, when using callbacks: ```js const github =...
Add the `.pipe()` function for plain operations such as JSON.parse() and arithmetic: ```js // Currently: const raw = await swear(fetch('/price')).json(); const price = raw * 0.9; // Proposed API: const...
Trying to use [spinnies](https://github.com/jcarpanelli/spinnies) as a dependency: ``` error: Could not resolve: "readline". Maybe you need to "bun install"? const readline = require('readline'); /Users/{OMITTED}/node_modules/spinnies/index.js:3:26 40% ``` > Feel free to...
Here added failing tests that are expected to work but fail; my other PR unfortunately is not great, I closed it and will add my current working code on top...
Feature request: allow to pass a plain `Error` instance to `toastr.error()` (and maybe to `toastr()` itself) that will properly display it as an error. IMHO this code looks intuitive enough...
Sorry if this has already been asked, but it's very difficult to search for this specifically. I love the size of goober! The only thing that I feel is missing...
This mapping of an array into a new one: https://github.com/franciscop/swear/blob/bb6d8ff22437180abe4b37a935106125fedf4956/index.js#L12 Makes this code not to work properly: ```js const arr = []; arr.hello = 'world'; console.log(arr.hello); // "world" const arr2...