Renjith

Results 4 issues of Renjith

### Code ```php use Mimey\MimeTypes; $mimes = new MimeTypes(); $extension = $mimes->getExtension('audio/mp3'); echo $extension; ``` ### Expected ``` mp3 ``` ### Output ``` null ```

### Code ```php use DataURI\Parser; $audio = Parser::parse('data:audio/mp3;base64,SUQzBAAAAAAAI1RTU0UAAAAPAA'); $mime = $audio->getMimeType(); echo $mime; ``` ### Expected ``` audio/mp3 ``` ### Output ``` audio/mp ```

### Confirm this is a Node library issue and not an underlying OpenAI API issue - [X] This is an issue with the Node library ### Describe the bug I've...

bug