Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 622 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 622 Bytes

attr-accept

JavaScript implementation of the "accept" attribute for HTML5 <input type="file">

Build Status

See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input#Attributes for more information.

Installation

npm install --save attr-accept

Usage

var accept = require('attr-accept');
accept({
    name: 'my file.png',
    type: 'image/png'
}, 'image/*') // => true

accept({
    name: 'my file.json',
    type: 'application/json'
}, 'image/*') // => false