Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 354 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 354 Bytes

filetypes.js

A complete list of file types, extensions and mime types in JavaScript.

Usage

Stretchr.Filetypes.descriptionFor("txt");
//= "Text file"

Stretchr.Filetypes.descriptionFor("text/plain");
//= "Text file"

Stretchr.Filetypes.mimeFor("txt");
//= "text/plain"

Stretchr.Filetypes.extensionFor("text/plain")
//= "txt"