Giter VIP home page Giter VIP logo

friendly-mimes's Introduction

Friendly Mimes

Returns you friendly Human readable mime types

NPM

To Resolve Mime Type

Resolves Mime type (eg: text/csv, application/mp4 etc) of the mime to the specific mime.

import { resolveMime } from 'friendly-mimes'

const item = resolveMime('application/mp4') // { "mime": "application/mp4", "name": "MPEG4", "fileType": ".mp4" }

console.log(item.name) //MPEG4

To Resolve File Type

Resolves File type (.mp4, .mp3 etc) of the mime to the specific mime.

import { resolveFileType } from 'friendly-mimes'

const item = resolveFileType('.csv') // {"mime": "text/csv", "name": "Comma-Separated Values",  "fileType": ".csv" }

console.log(item.mime) // text/csv

To Resolve Name to mime types

Resolves name of the mime to array of related mimes.

import { resolveName } from 'friendly-mimes'

const mimes = resolveName('MPEG-4 Audio') // Array of Mime Types related

console.log(mimes[0].mime)

Contribution

If you see any data that is missing or incorrect, please be free to raise a PR to correct the same.

friendly-mimes's People

Contributors

colinramsay avatar kaytwo avatar kilakewe avatar kirananto avatar raszi avatar sarveshraj avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.