mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
Moving to node_modules folder to make easier to upgrade
trying to move from Bootstrap 3 to Bootstrap 5
This commit is contained in:
parent
047e363a16
commit
d4d042e041
8460 changed files with 1355889 additions and 547977 deletions
22
node_modules/es6-object-assign/LICENSE
generated
vendored
Normal file
22
node_modules/es6-object-assign/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
Copyright (c) 2015-2017 Rubén Norte <rubennorte@gmail.com>
|
||||
|
||||
MIT License
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
96
node_modules/es6-object-assign/README.md
generated
vendored
Normal file
96
node_modules/es6-object-assign/README.md
generated
vendored
Normal file
|
@ -0,0 +1,96 @@
|
|||
[](https://www.npmjs.org/package/es6-object-assign)
|
||||
[](https://www.npmjs.org/package/es6-object-assign)
|
||||
|
||||
# ES6 Object.assign()
|
||||
|
||||
ECMAScript 2015 (ES2015/ES6) [Object.assign()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) polyfill and [ponyfill](https://ponyfill.com) for ECMAScript 5 environments.
|
||||
|
||||
The main definition of this package has been copied from the polyfill defined in the [Mozilla Developer Network](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign).
|
||||
|
||||
## Installation
|
||||
|
||||
### NPM
|
||||
|
||||
```bash
|
||||
npm install es6-object-assign
|
||||
```
|
||||
|
||||
### Manual download and import
|
||||
|
||||
The package is also available as a UMD module (compatible with AMD, CommonJS and exposing a global variable `ObjectAssign`) in `dist/object-assign.js` and `dist/object-assign.min.js` (833 bytes minified and gzipped).
|
||||
|
||||
The versions with automatic polyfilling are `dist/object-assign-auto.js` and `dist/object-assign-auto.min.js`.
|
||||
|
||||
## Usage
|
||||
|
||||
**CommonJS**:
|
||||
|
||||
```javascript
|
||||
// Polyfill, modifying the global Object
|
||||
require('es6-object-assign').polyfill();
|
||||
var obj = Object.assign({}, { foo: 'bar' });
|
||||
|
||||
// Same version with automatic polyfilling
|
||||
require('es6-object-assign/auto');
|
||||
var obj = Object.assign({}, { foo: 'bar' });
|
||||
|
||||
// Or ponyfill, using a reference to the function without modifying globals
|
||||
var assign = require('es6-object-assign').assign;
|
||||
var obj = assign({}, { foo: 'bar' });
|
||||
```
|
||||
|
||||
**Globals**:
|
||||
|
||||
Manual polyfill:
|
||||
|
||||
```html
|
||||
<script src="<your-libs-directory>/object-assign.min.js"></script>
|
||||
<script>
|
||||
// Polyfill, modifying the global Object
|
||||
window.ObjectAssign.polyfill();
|
||||
var obj = Object.assign({}, { foo: 'bar' });
|
||||
</script>
|
||||
```
|
||||
|
||||
Automatic polyfill:
|
||||
|
||||
```html
|
||||
<script src="<your-libs-directory>/object-assign-auto.min.js"></script>
|
||||
<script>
|
||||
var obj = Object.assign({}, { foo: 'bar' });
|
||||
</script>
|
||||
```
|
||||
|
||||
Ponyfill, without modifying globals:
|
||||
|
||||
```html
|
||||
<script src="<your-libs-directory>/object-assign.min.js"></script>
|
||||
<script>
|
||||
var assign = window.ObjectAssign.assign;
|
||||
var obj = assign({}, { foo: 'bar' });
|
||||
</script>
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2017 Rubén Norte
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
3
node_modules/es6-object-assign/auto.js
generated
vendored
Normal file
3
node_modules/es6-object-assign/auto.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
'use strict';
|
||||
|
||||
require('./index').polyfill();
|
54
node_modules/es6-object-assign/dist/object-assign-auto.js
generated
vendored
Normal file
54
node_modules/es6-object-assign/dist/object-assign-auto.js
generated
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
|
||||
'use strict';
|
||||
|
||||
require('./index').polyfill();
|
||||
|
||||
},{"./index":2}],2:[function(require,module,exports){
|
||||
/**
|
||||
* Code refactored from Mozilla Developer Network:
|
||||
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
function assign(target, firstSource) {
|
||||
if (target === undefined || target === null) {
|
||||
throw new TypeError('Cannot convert first argument to object');
|
||||
}
|
||||
|
||||
var to = Object(target);
|
||||
for (var i = 1; i < arguments.length; i++) {
|
||||
var nextSource = arguments[i];
|
||||
if (nextSource === undefined || nextSource === null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
var keysArray = Object.keys(Object(nextSource));
|
||||
for (var nextIndex = 0, len = keysArray.length; nextIndex < len; nextIndex++) {
|
||||
var nextKey = keysArray[nextIndex];
|
||||
var desc = Object.getOwnPropertyDescriptor(nextSource, nextKey);
|
||||
if (desc !== undefined && desc.enumerable) {
|
||||
to[nextKey] = nextSource[nextKey];
|
||||
}
|
||||
}
|
||||
}
|
||||
return to;
|
||||
}
|
||||
|
||||
function polyfill() {
|
||||
if (!Object.assign) {
|
||||
Object.defineProperty(Object, 'assign', {
|
||||
enumerable: false,
|
||||
configurable: true,
|
||||
writable: true,
|
||||
value: assign
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
assign: assign,
|
||||
polyfill: polyfill
|
||||
};
|
||||
|
||||
},{}]},{},[1]);
|
1
node_modules/es6-object-assign/dist/object-assign-auto.min.js
generated
vendored
Normal file
1
node_modules/es6-object-assign/dist/object-assign-auto.min.js
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!function r(e,t,n){function o(u,f){if(!t[u]){if(!e[u]){var c="function"==typeof require&&require;if(!f&&c)return c(u,!0);if(i)return i(u,!0);var a=new Error("Cannot find module '"+u+"'");throw a.code="MODULE_NOT_FOUND",a}var l=t[u]={exports:{}};e[u][0].call(l.exports,function(r){var t=e[u][1][r];return o(t?t:r)},l,l.exports,r,e,t,n)}return t[u].exports}for(var i="function"==typeof require&&require,u=0;u<n.length;u++)o(n[u]);return o}({1:[function(r,e,t){"use strict";r("./index").polyfill()},{"./index":2}],2:[function(r,e,t){"use strict";function n(r,e){if(void 0===r||null===r)throw new TypeError("Cannot convert first argument to object");for(var t=Object(r),n=1;n<arguments.length;n++){var o=arguments[n];if(void 0!==o&&null!==o)for(var i=Object.keys(Object(o)),u=0,f=i.length;u<f;u++){var c=i[u],a=Object.getOwnPropertyDescriptor(o,c);void 0!==a&&a.enumerable&&(t[c]=o[c])}}return t}function o(){Object.assign||Object.defineProperty(Object,"assign",{enumerable:!1,configurable:!0,writable:!0,value:n})}e.exports={assign:n,polyfill:o}},{}]},{},[1]);
|
50
node_modules/es6-object-assign/dist/object-assign.js
generated
vendored
Normal file
50
node_modules/es6-object-assign/dist/object-assign.js
generated
vendored
Normal file
|
@ -0,0 +1,50 @@
|
|||
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.ObjectAssign = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
|
||||
/**
|
||||
* Code refactored from Mozilla Developer Network:
|
||||
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
function assign(target, firstSource) {
|
||||
if (target === undefined || target === null) {
|
||||
throw new TypeError('Cannot convert first argument to object');
|
||||
}
|
||||
|
||||
var to = Object(target);
|
||||
for (var i = 1; i < arguments.length; i++) {
|
||||
var nextSource = arguments[i];
|
||||
if (nextSource === undefined || nextSource === null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
var keysArray = Object.keys(Object(nextSource));
|
||||
for (var nextIndex = 0, len = keysArray.length; nextIndex < len; nextIndex++) {
|
||||
var nextKey = keysArray[nextIndex];
|
||||
var desc = Object.getOwnPropertyDescriptor(nextSource, nextKey);
|
||||
if (desc !== undefined && desc.enumerable) {
|
||||
to[nextKey] = nextSource[nextKey];
|
||||
}
|
||||
}
|
||||
}
|
||||
return to;
|
||||
}
|
||||
|
||||
function polyfill() {
|
||||
if (!Object.assign) {
|
||||
Object.defineProperty(Object, 'assign', {
|
||||
enumerable: false,
|
||||
configurable: true,
|
||||
writable: true,
|
||||
value: assign
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
assign: assign,
|
||||
polyfill: polyfill
|
||||
};
|
||||
|
||||
},{}]},{},[1])(1)
|
||||
});
|
1
node_modules/es6-object-assign/dist/object-assign.min.js
generated
vendored
Normal file
1
node_modules/es6-object-assign/dist/object-assign.min.js
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var n;n="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,n.ObjectAssign=e()}}(function(){return function e(n,r,t){function o(f,u){if(!r[f]){if(!n[f]){var l="function"==typeof require&&require;if(!u&&l)return l(f,!0);if(i)return i(f,!0);var c=new Error("Cannot find module '"+f+"'");throw c.code="MODULE_NOT_FOUND",c}var a=r[f]={exports:{}};n[f][0].call(a.exports,function(e){var r=n[f][1][e];return o(r?r:e)},a,a.exports,e,n,r,t)}return r[f].exports}for(var i="function"==typeof require&&require,f=0;f<t.length;f++)o(t[f]);return o}({1:[function(e,n,r){"use strict";function t(e,n){if(void 0===e||null===e)throw new TypeError("Cannot convert first argument to object");for(var r=Object(e),t=1;t<arguments.length;t++){var o=arguments[t];if(void 0!==o&&null!==o)for(var i=Object.keys(Object(o)),f=0,u=i.length;f<u;f++){var l=i[f],c=Object.getOwnPropertyDescriptor(o,l);void 0!==c&&c.enumerable&&(r[l]=o[l])}}return r}function o(){Object.assign||Object.defineProperty(Object,"assign",{enumerable:!1,configurable:!0,writable:!0,value:t})}n.exports={assign:t,polyfill:o}},{}]},{},[1])(1)});
|
46
node_modules/es6-object-assign/index.js
generated
vendored
Normal file
46
node_modules/es6-object-assign/index.js
generated
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
/**
|
||||
* Code refactored from Mozilla Developer Network:
|
||||
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
function assign(target, firstSource) {
|
||||
if (target === undefined || target === null) {
|
||||
throw new TypeError('Cannot convert first argument to object');
|
||||
}
|
||||
|
||||
var to = Object(target);
|
||||
for (var i = 1; i < arguments.length; i++) {
|
||||
var nextSource = arguments[i];
|
||||
if (nextSource === undefined || nextSource === null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
var keysArray = Object.keys(Object(nextSource));
|
||||
for (var nextIndex = 0, len = keysArray.length; nextIndex < len; nextIndex++) {
|
||||
var nextKey = keysArray[nextIndex];
|
||||
var desc = Object.getOwnPropertyDescriptor(nextSource, nextKey);
|
||||
if (desc !== undefined && desc.enumerable) {
|
||||
to[nextKey] = nextSource[nextKey];
|
||||
}
|
||||
}
|
||||
}
|
||||
return to;
|
||||
}
|
||||
|
||||
function polyfill() {
|
||||
if (!Object.assign) {
|
||||
Object.defineProperty(Object, 'assign', {
|
||||
enumerable: false,
|
||||
configurable: true,
|
||||
writable: true,
|
||||
value: assign
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
assign: assign,
|
||||
polyfill: polyfill
|
||||
};
|
72
node_modules/es6-object-assign/package.json
generated
vendored
Normal file
72
node_modules/es6-object-assign/package.json
generated
vendored
Normal file
|
@ -0,0 +1,72 @@
|
|||
{
|
||||
"_from": "es6-object-assign@^1.1.0",
|
||||
"_id": "es6-object-assign@1.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=",
|
||||
"_location": "/es6-object-assign",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "es6-object-assign@^1.1.0",
|
||||
"name": "es6-object-assign",
|
||||
"escapedName": "es6-object-assign",
|
||||
"rawSpec": "^1.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/sweetalert"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz",
|
||||
"_shasum": "c2c3582656247c39ea107cb1e6652b6f9f24523c",
|
||||
"_spec": "es6-object-assign@^1.1.0",
|
||||
"_where": "G:\\GDrive\\htdocs\\YouPHPTube\\node_modules\\sweetalert",
|
||||
"author": {
|
||||
"name": "Rubén Norte",
|
||||
"email": "rubennorte@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/rubennorte/es6-object-assign/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "ECMAScript 2015 (ES6) Object.assign polyfill and ponyfill",
|
||||
"devDependencies": {
|
||||
"browserify": "^10.1.3",
|
||||
"uglify-js": "^2.4.21"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"auto.js",
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/rubennorte/es6-object-assign",
|
||||
"keywords": [
|
||||
"Object",
|
||||
"assign",
|
||||
"ES6",
|
||||
"ECMAScript 6",
|
||||
"ES2015",
|
||||
"ECMAScript 2015",
|
||||
"polyfill",
|
||||
"ponyfill"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "es6-object-assign",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/rubennorte/es6-object-assign.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run compile && npm run compress",
|
||||
"compile": "npm run compile:manual && npm run compile:auto",
|
||||
"compile:auto": "browserify auto.js -o dist/object-assign-auto.js",
|
||||
"compile:manual": "browserify index.js -o dist/object-assign.js --standalone ObjectAssign",
|
||||
"compress": "npm run compress:manual && npm run compress:auto",
|
||||
"compress:auto": "uglifyjs dist/object-assign-auto.js --compress --mangle > dist/object-assign-auto.min.js",
|
||||
"compress:manual": "uglifyjs dist/object-assign.js --compress --mangle > dist/object-assign.min.js"
|
||||
},
|
||||
"version": "1.1.0"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue