UNPKG

constant-list

Version:

Provide a constant list definition for the most common use case (http, file extension, mime, js type, ...)

29 lines (26 loc) 751 B
/** * Application */ module.exports.JS = 'application/javascript'; module.exports.STREAM = 'application/octet-stream'; module.exports.OGG = 'application/ogg'; module.exports.PDF = 'application/pdf'; module.exports.JSON = 'application/json'; module.exports.XML = 'application/xml'; module.exports.ZIP = 'application/zip'; /** * Image */ module.exports.GIF = 'image/gif'; module.exports.JPG = 'image/jpeg'; module.exports.PNG = 'image/png'; module.exports.TIFF = 'image/tiff'; module.exports.SVG = 'image/svg+xml'; /** * Texte */ module.exports.CSS = 'text/css'; module.exports.CSV = 'text/csv'; module.exports.HTML = 'text/html'; module.exports.TXT = 'text/plain'; module.exports.XML = 'text/xml';