Added logging, changed some directory structure

This commit is contained in:
2018-01-13 21:33:40 -05:00
parent f079a5f067
commit 8e72ffb917
73656 changed files with 35284 additions and 53718 deletions

45
goTorrentWebUI/node_modules/attr-accept/README.md generated vendored Normal file
View File

@@ -0,0 +1,45 @@
# attr-accept
JavaScript implementation of the "accept" attribute for HTML5 `<input type="file">`
[![Build Status](https://travis-ci.org/okonet/attr-accept.svg?branch=master)](https://travis-ci.org/okonet/attr-accept)
See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input#Attributes for more information.
Installation
=====
```sh
npm install --save attr-accept
```
Usage
=====
```javascript
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.
```javascript
accept({
name: 'my file.json',
type: 'application/json'
}, 'application/json,video/*') // => true
accept({
name: 'my file.json',
type: 'application/json'
}, ['application/json', 'video/*']) // => true
```