npm modules updated

This commit is contained in:
2018-03-09 16:48:44 -05:00
parent fc9075c33f
commit 9916b559fd
78 changed files with 2820 additions and 511 deletions

View File

@@ -1164,10 +1164,6 @@ return /******/ (function(modules) { // webpackBootstrap
xhr.setRequestHeader('Accept', '*/*');
} catch (e) {}
if (this.supportsBinary) {
xhr.responseType = 'arraybuffer';
}
// ie6 check
if ('withCredentials' in xhr) {
xhr.withCredentials = true;
@@ -1189,8 +1185,8 @@ return /******/ (function(modules) { // webpackBootstrap
if (xhr.readyState === 2) {
try {
var contentType = xhr.getResponseHeader('Content-Type');
if (contentType !== 'application/octet-stream') {
xhr.responseType = 'text';
if (self.supportsBinary && contentType === 'application/octet-stream') {
xhr.responseType = 'arraybuffer';
}
} catch (e) {}
}
@@ -1302,11 +1298,7 @@ return /******/ (function(modules) { // webpackBootstrap
contentType = this.xhr.getResponseHeader('Content-Type');
} catch (e) {}
if (contentType === 'application/octet-stream') {
if (this.xhr.responseType === 'arraybuffer') {
data = this.xhr.response || this.xhr.responseText;
} else {
data = String.fromCharCode.apply(null, new Uint8Array(this.xhr.response));
}
data = this.xhr.response || this.xhr.responseText;
} else {
data = this.xhr.responseText;
}

View File

@@ -220,10 +220,6 @@ Request.prototype.create = function () {
xhr.setRequestHeader('Accept', '*/*');
} catch (e) {}
if (this.supportsBinary) {
xhr.responseType = 'arraybuffer';
}
// ie6 check
if ('withCredentials' in xhr) {
xhr.withCredentials = true;
@@ -245,8 +241,8 @@ Request.prototype.create = function () {
if (xhr.readyState === 2) {
try {
var contentType = xhr.getResponseHeader('Content-Type');
if (contentType !== 'application/octet-stream') {
xhr.responseType = 'text';
if (self.supportsBinary && contentType === 'application/octet-stream') {
xhr.responseType = 'arraybuffer';
}
} catch (e) {}
}
@@ -358,11 +354,7 @@ Request.prototype.onLoad = function () {
contentType = this.xhr.getResponseHeader('Content-Type');
} catch (e) {}
if (contentType === 'application/octet-stream') {
if (this.xhr.responseType === 'arraybuffer') {
data = this.xhr.response || this.xhr.responseText;
} else {
data = String.fromCharCode.apply(null, new Uint8Array(this.xhr.response));
}
data = this.xhr.response || this.xhr.responseText;
} else {
data = this.xhr.responseText;
}

View File

@@ -1,32 +1,27 @@
{
"_args": [
[
"debug@3.1.0",
"/Volumes/Clear Drive/Code/2406 Web Apps/Assignments/Assignment 3/project"
]
],
"_from": "debug@3.1.0",
"_from": "debug@~3.1.0",
"_id": "debug@3.1.0",
"_inBundle": false,
"_integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
"_location": "/engine.io-client/debug",
"_phantomChildren": {},
"_requested": {
"type": "version",
"type": "range",
"registry": true,
"raw": "debug@3.1.0",
"raw": "debug@~3.1.0",
"name": "debug",
"escapedName": "debug",
"rawSpec": "3.1.0",
"rawSpec": "~3.1.0",
"saveSpec": null,
"fetchSpec": "3.1.0"
"fetchSpec": "~3.1.0"
},
"_requiredBy": [
"/engine.io-client"
],
"_resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
"_spec": "3.1.0",
"_where": "/Volumes/Clear Drive/Code/2406 Web Apps/Assignments/Assignment 3/project",
"_shasum": "5bb5a0672628b64149566ba16819e61518c67261",
"_spec": "debug@~3.1.0",
"_where": "/Volumes/Clear Drive/Code/Javascript/AirHockey/node_modules/engine.io-client",
"author": {
"name": "TJ Holowaychuk",
"email": "tj@vision-media.ca"
@@ -35,6 +30,7 @@
"bugs": {
"url": "https://github.com/visionmedia/debug/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Nathan Rajlich",
@@ -49,6 +45,7 @@
"dependencies": {
"ms": "2.0.0"
},
"deprecated": false,
"description": "small debugging utility",
"devDependencies": {
"browserify": "14.4.0",

View File

@@ -1,34 +1,29 @@
{
"_args": [
[
"engine.io-client@3.1.5",
"/Volumes/Clear Drive/Code/2406 Web Apps/Assignments/Assignment 3/project"
]
],
"_from": "engine.io-client@3.1.5",
"_id": "engine.io-client@3.1.5",
"_from": "engine.io-client@~3.1.0",
"_id": "engine.io-client@3.1.6",
"_inBundle": false,
"_integrity": "sha512-Rv9vgb83zrNVhRircUXHi4mtbJhgy2oWtJOCZEbCLFs2HiDSWmh/aOEj8TwoKsn8zXGqTuQuPSoU4v3E10bR6A==",
"_integrity": "sha512-hnuHsFluXnsKOndS4Hv6SvUrgdYx1pk2NqfaDMW+GWdgfU3+/V25Cj7I8a0x92idSpa5PIhJRKxPvp9mnoLsfg==",
"_location": "/engine.io-client",
"_phantomChildren": {
"ms": "2.0.0"
},
"_requested": {
"type": "version",
"type": "range",
"registry": true,
"raw": "engine.io-client@3.1.5",
"raw": "engine.io-client@~3.1.0",
"name": "engine.io-client",
"escapedName": "engine.io-client",
"rawSpec": "3.1.5",
"rawSpec": "~3.1.0",
"saveSpec": null,
"fetchSpec": "3.1.5"
"fetchSpec": "~3.1.0"
},
"_requiredBy": [
"/socket.io-client"
],
"_resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.1.5.tgz",
"_spec": "3.1.5",
"_where": "/Volumes/Clear Drive/Code/2406 Web Apps/Assignments/Assignment 3/project",
"_resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.1.6.tgz",
"_shasum": "5bdeb130f8b94a50ac5cbeb72583e7a4a063ddfd",
"_spec": "engine.io-client@~3.1.0",
"_where": "/Volumes/Clear Drive/Code/Javascript/AirHockey/node_modules/socket.io-client",
"browser": {
"ws": false,
"xmlhttprequest-ssl": "./lib/xmlhttprequest.js"
@@ -36,6 +31,7 @@
"bugs": {
"url": "https://github.com/socketio/engine.io-client/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Guillermo Rauch",
@@ -67,6 +63,7 @@
"xmlhttprequest-ssl": "~1.5.4",
"yeast": "0.1.2"
},
"deprecated": false,
"description": "Client for the realtime Engine",
"devDependencies": {
"babel-core": "^6.24.0",
@@ -112,5 +109,5 @@
"scripts": {
"test": "gulp test"
},
"version": "3.1.5"
"version": "3.1.6"
}