spmjs

spm@3.x

Brand new static package manager for browser.

Getting Started 󰅴 Packages

attr-accept


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

spm install attr-accept
Versions 1.0.3
Updated 9 years ago
Keywords html5, input, tag, attribute, attr, accpet, file
Homepage https://github.com/okonet/attr-accept#readme
Repository git+https://github.com/okonet/attr-accept.git
Main dist/index.js
Owner

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