Add yet-another-react-lightbox package and update .gitignore to exclude node_modules

This commit is contained in:
IGNY8 VPS (Salman)
2025-11-12 18:50:30 +00:00
parent bd2a5570a9
commit c92f4a5edd
9304 changed files with 29 additions and 2008667 deletions

View File

@@ -1,7 +0,0 @@
define( [
"./fnToString"
], function( fnToString ) {
"use strict";
return fnToString.call( Object );
} );

View File

@@ -1,5 +0,0 @@
define( function() {
"use strict";
return [];
} );

View File

@@ -1,6 +0,0 @@
define( function() {
"use strict";
// [[Class]] -> type pairs
return {};
} );

View File

@@ -1,5 +0,0 @@
define( function() {
"use strict";
return window.document;
} );

View File

@@ -1,7 +0,0 @@
define( [
"./document"
], function( document ) {
"use strict";
return document.documentElement;
} );

View File

@@ -1,16 +0,0 @@
define( [
"./arr"
], function( arr ) {
"use strict";
// Support: IE 9 - 11+, Edge 18+, Android Browser 4.0 - 4.3 only, iOS 7 - 11 only, Safari 11 only,
// Firefox <= 61 only
// Provide fallback for browsers without Array#flat.
return arr.flat ? function( array ) {
return arr.flat.call( array );
} : function( array ) {
return arr.concat.apply( [], array );
};
} );

View File

@@ -1,7 +0,0 @@
define( [
"./hasOwn"
], function( hasOwn ) {
"use strict";
return hasOwn.toString;
} );

View File

@@ -1,5 +0,0 @@
define( function() {
"use strict";
return Object.getPrototypeOf;
} );

View File

@@ -1,7 +0,0 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
return class2type.hasOwnProperty;
} );

View File

@@ -1,7 +0,0 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.indexOf;
} );

View File

@@ -1,17 +0,0 @@
define( function() {
"use strict";
return function isFunction( obj ) {
// Support: Chrome <=57, Firefox <=52
// In some browsers, typeof returns "function" for HTML <object> elements
// (i.e., `typeof document.createElement( "object" ) === "function"`).
// We don't want to classify *any* DOM node as a function.
// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5
// Plus for old WebKit, typeof returns "function" for HTML collections
// (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756)
return typeof obj === "function" && typeof obj.nodeType !== "number" &&
typeof obj.item !== "function";
};
} );

View File

@@ -1,8 +0,0 @@
define( function() {
"use strict";
return function isWindow( obj ) {
return obj != null && obj === obj.window;
};
} );

View File

@@ -1,5 +0,0 @@
define( function() {
"use strict";
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
} );

View File

@@ -1,9 +0,0 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.pop;
} );

View File

@@ -1,7 +0,0 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.push;
} );

View File

@@ -1,5 +0,0 @@
define( function() {
"use strict";
return ( /^(?:checkbox|radio)$/i );
} );

View File

@@ -1,9 +0,0 @@
define( [
"../var/pnum"
], function( pnum ) {
"use strict";
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
} );

View File

@@ -1,8 +0,0 @@
define( function() {
"use strict";
// Only count HTML whitespace
// Other whitespace should count in values
// https://infra.spec.whatwg.org/#ascii-whitespace
return ( /[^\x20\t\r\n\f]+/g );
} );

View File

@@ -1,12 +0,0 @@
define( [
"./whitespace"
], function( whitespace ) {
"use strict";
return new RegExp(
"^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
"g"
);
} );

View File

@@ -1,7 +0,0 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.slice;
} );

View File

@@ -1,9 +0,0 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.sort;
} );

View File

@@ -1,9 +0,0 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.splice;
} );

View File

@@ -1,6 +0,0 @@
define( function() {
"use strict";
// All support tests are defined in their respective modules.
return {};
} );

View File

@@ -1,7 +0,0 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
return class2type.toString;
} );

View File

@@ -1,8 +0,0 @@
define( function() {
"use strict";
// https://www.w3.org/TR/css3-selectors/#whitespace
return "[\\x20\\t\\r\\n\\f]";
} );