Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

636414 Views

Latest files of /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime

src/ cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime/src/
2 Items
  • build.js
  • test.js
  • CHANGELOG.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime/CHANGELOG.md
    138 Views
    0 Comments
    # Changelog

    ## v1.6.0 (24/11/2017)
    *No changelog for this release.*

    ---

    ## v2.0.4 (24/11/2017)
    types.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime/types.json
    102 Views
    0 Comments
    {"application/andrew-inset":["ez"],"application/applixware":["aw"],"application/atom+xml":["atom"],"application/atomcat+xml":["atomcat"],"application/atomsvc+xml":["atomsvc"],"application/bdoc":["bdoc"],"application/ccxml+xml":["ccxml"],"application/cdmi-capability":["cdmia"],"application/cdmi-container":["cdmic"],"application/cdmi-domain":["cdmid"],"application/cdmi-object":["cdmio"],"application/cdmi-queue":["cdmiq"],"application/cu-seeme":["cu"],"application/dash+xml":["mpd"],"application/davmount+xml":[
    README.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime/README.md
    139 Views
    0 Comments
    # mime

    Comprehensive MIME type mapping API based on mime-db module.

    ## Install

    Install with [npm](http://github.com/isaacs/npm):

    cli.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime/cli.js
    125 Views
    0 Comments
    #!/usr/bin/env node

    var mime = require('./mime.js');
    var file = process.argv[2];
    var type = mime.lookup(file);

    process.stdout.write(type + '\n');

    LICENSE cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime/LICENSE
    225 Views
    0 Comments
    Media file
    mime.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime/mime.js
    126 Views
    0 Comments
    var path = require('path');
    var fs = require('fs');

    function Mime() {
    // Map of extension -> mime type
    this.types = Object.create(null);

    // Map of mime type -> extension
    package.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime/package.json
    107 Views
    0 Comments
    {
    "author": {
    "name": "Robert Kieffer",
    "url": "http://github.com/broofa",
    "email": "robert@broofa.com"
    },
    "bin": {
    "mime": "cli.js"