数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
超级管理员 94a3701648 合并 2 years ago
..
.npmignore 合并 2 years ago
.travis.yml 合并 2 years ago
README.md 合并 2 years ago
example.js 合并 2 years ago
index.js 合并 2 years ago
package.json 合并 2 years ago
test.js 合并 2 years ago

README.md

mime-match

A simple function to checker whether a target mime type matches a mime-type pattern (e.g. image/jpeg matches image/jpeg OR image/*).

NPM

Build Status bitHound Score

Example Usage

var match = require('mime-match/');

// exact match
console.log(match('image/jpeg', 'image/jpeg'));
// --> true

// wildcard match
console.log(match('image/jpeg', 'image/*'));
// --> true

// find which of our wildcard patterns matches a specific mimetype
console.log(['application/*', 'image/*'].filter(match('image/jpeg')));
// --> ['image/*']

// charset suffix is ignored
console.log(match('application/json', 'application/json; charset=utf-8'));
// --> true

License(s)

ISC

Copyright (c) 2016, Damon Oehlman damon.oehlman@gmail.com

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.