Rohit Reddy Abbadi

Results 31 issues of Rohit Reddy Abbadi

## Expected Behavior ## Current Behavior ```error Deprecation warning: value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not...

## Checklist - [ ] Raised initially as discussion #... - [x] This cannot be dealt with as a third party library. (We prefer new functionality to be [in the...

Needs design decision

as the PR is now landed: https://github.com/nodejs/node/pull/39062 (https://github.com/nodejs/node/pull/39062#issuecomment-871685340) https://github.com/puppeteer/puppeteer/blob/5b792de7a97611441777d1ac99cb95516301d7dc/src/common/helper.ts#L345-L353

bug
unconfirmed

## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our guidelines: https://github.com/nestjs/nest/blob/master/CONTRIBUTING.md - [x] Tests for the changes have been added...

Support for Socket v3/v4

### What were you trying to do? run `tsc` after importing `pdf-lib` into my node project ### How did you attempt to do it? `npm i pdf-lib@latest` `import { PDFDocument...

bug
needs-triage

I'm using https://github.com/tfranzel/drf-spectacular for OpenAPI documentation. `Warning #6: could not derive type of path parameter "ballot_pk" because because it is untyped and obtaining queryset from failed. consider adding a type...

`lib/extractors/docx.js#10` ```js var doc = new Dom().parseFromString( inText ) ``` This line of code is trying to load all the content into memory and parse it. The size of content...

Here's an example representation of my models: ```py class Tag(models.Model): user = models.ForeignKey('auth.User', on_delete=models.CASCADE) class Activity(models.Model): user = models.ForeignKey('auth.User', on_delete=models.CASCADE) tags = models.ManyToManyField(Tag, through='TagBinding') class TagBinding(models.Model): tag = models.ForeignKey(Tag) activity...

documentation

closes #432 #### Pretext: Say there are 2 properties to a model `id` and `name`. Creating a model instance (POST) requires only `name` to be posted and `id` would be...