thedesk/app/node_modules/ext-name
2018-05-26 21:48:13 +09:00
..
index.js TheDesk modify 2018-01-28 21:27:11 +09:00
license TheDesk modify 2018-01-28 21:27:11 +09:00
package.json TheDesk Mio (ver.5) 2018-05-26 21:48:13 +09:00
readme.md TheDesk modify 2018-01-28 21:27:11 +09:00

ext-name Build Status

Get the file extension and MIME type from a file

Install

$ npm install --save ext-name

Usage

const extName = require('ext-name');

console.log(extName('foobar.tar'));
//=> [{ext: 'tar', mime: 'application/x-tar'}]

console.log(extName.mime('application/x-tar'));
//=> [{ext: 'tar', mime: 'application/x-tar'}]

API

extName(filename)

Returns an Array with objects with the file extension and MIME type.

filename

Type: string

Get the extension and MIME type from a filename.

extName.mime(mimetype)

Returns an Array with objects with the file extension and MIME type.

mimetype

Type: string

Get the extension and MIME type from a MIME type.

License

MIT © Kevin Mårtensson