Illia Kozyr c722a49f64 React Project DONE | hace 2 años | |
---|---|---|
.. | ||
.github | hace 2 años | |
dist | hace 2 años | |
src | hace 2 años | |
test | hace 2 años | |
.codeclimate.yml | hace 2 años | |
.editorconfig | hace 2 años | |
.eslintrc | hace 2 años | |
LICENSE | hace 2 años | |
README.md | hace 2 años | |
index.d.ts | hace 2 años | |
package.json | hace 2 años | |
webpack.config.js | hace 2 años |
JavaScript implementation of the "accept" attribute for HTML5 <input type="file">
See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept for more information.
npm install --save attr-accept
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
accept({
name: 'my file.srt',
type: ''
}, '.srt') // => true
You can also pass multiple mime types as a comma delimited string or array.
accept({
name: 'my file.json',
type: 'application/json'
}, 'application/json,video/*') // => true
accept({
name: 'my file.json',
type: 'application/json'
}, ['application/json', 'video/*']) // => true