Illia Kozyr c722a49f64 React Project DONE | 2 år sedan | |
---|---|---|
.. | ||
.github | 2 år sedan | |
dist | 2 år sedan | |
src | 2 år sedan | |
test | 2 år sedan | |
.codeclimate.yml | 2 år sedan | |
.editorconfig | 2 år sedan | |
.eslintrc | 2 år sedan | |
LICENSE | 2 år sedan | |
README.md | 2 år sedan | |
index.d.ts | 2 år sedan | |
package.json | 2 år sedan | |
webpack.config.js | 2 år sedan |
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