Andrew Fong
Andrew Fong
`enableLogging` has an implicit return of `any`. Typing as `void` allows the type definition to be used with the `--noImplicitAny` flag.
### 🚀 Feature Proposal Currently, the `process` and `processAsync` options for a code transformation receive both the source text and file name necessary to run the transform. This presumably requires...
Meteor supports using Mongo's internal `ObjectID` in lieu of a string when the right `idGeneration` option is passed (http://docs.meteor.com/#/full/mongo_collection). We should build in some support for that option into `findAndModify`.
See https://github.com/fongandrew/meteor-find-and-modify/issues/10. Mongo supports a `transform` object that accepts the document and returns a modified object instead of the stored BSON/EJSON document (http://docs.meteor.com/#/full/mongo_collection). This should be fairly simple to add...
In pyfacebook/facebook/djangofb/**init**.py, because of the "from datetime import datetime" on line 4, it should only be datetime.fromtimestamp on line 226, not datetime.datetime.fromtimestamp.
### Affected Packages extension-task-item ### Version(s) 2.5.0-beta.6 ### Bug Description Updating a tasklist item programatically via `editor.commands.setContent` may not work as expected after the user has interacted with the checkbox....
When using memory location for testing purposes, query params returned by `useSearch` are ignored: ```jsx import { render, screen } from '@testing-library/react'; import { Router, useSearch, useLocation } from 'wouter';...
### Steps to Reproduce 1. Start a new post 2. Type something 3. Hit enter a bunch of times until you get to 4 lines. The text shifts slightly. ###...
### Steps to Reproduce 1. Reply to a post from the Following feed. 2. Reply with: `There are workplaces where people say "I am inspired by B2B SaaS lol" and...
### Describe the bug When rendering in SSR with ``, a `` wrapper will reset the context or counter used by `createUniqueId`. This can result in duplicate IDs. Granted, there...