-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.js
More file actions
53 lines (41 loc) · 1.03 KB
/
index.js
File metadata and controls
53 lines (41 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*!
* compressible
* Copyright(c) 2013 Jonathan Ong
* Copyright(c) 2014 Jeremiah Senkpiel
* Copyright(c) 2015 Douglas Christopher Wilson
* MIT Licensed
*/
'use strict'
/**
* Module dependencies.
* @private
*/
var db = require('mime-db')
/**
* Module variables.
* @private
*/
var COMPRESSIBLE_TYPE_REGEXP = /^text\/|\+(?:json|text|xml)$/i
var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/
/**
* Module exports.
* @public
*/
module.exports = compressible
/**
* Checks if a type is compressible.
*
* @param {string} type
* @return {(boolean|undefined)} Returns `true` if compressible, `false` if not, or `undefined` if indeterminate.
* @public
*/
function compressible (type) {
if (typeof type !== 'string') return false
var match = EXTRACT_TYPE_REGEXP.exec(type)
if (!match) return undefined
var mime = match[1].toLowerCase()
var data = db[mime]
return typeof data !== 'undefined' && typeof data.compressible !== 'undefined'
? data.compressible
: COMPRESSIBLE_TYPE_REGEXP.test(mime) || undefined
}