Initial commit

This commit is contained in:
Spencer Pincott
2024-07-15 22:20:13 -04:00
commit 97737ca1ae
16618 changed files with 934131 additions and 0 deletions

19
themes/keepit/node_modules/core-js/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,19 @@
Copyright (c) 2014-2022 Denis Pushkarev
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.

68
themes/keepit/node_modules/core-js/README.md generated vendored Normal file
View File

@@ -0,0 +1,68 @@
![logo](https://user-images.githubusercontent.com/2213682/146607186-8e13ddef-26a4-4ebf-befd-5aac9d77c090.png)
[![Open Collective](https://opencollective.com/core-js/all/badge.svg?label=open%20collective)](https://opencollective.com/core-js) [![version](https://img.shields.io/npm/v/core-js.svg)](https://www.npmjs.com/package/core-js) [![core-js downloads](https://img.shields.io/npm/dm/core-js.svg?label=npm%20i%20core-js)](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18) [![core-js-pure downloads](https://img.shields.io/npm/dm/core-js-pure.svg?label=npm%20i%20core-js-pure)](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18) [![tests](https://github.com/zloirock/core-js/workflows/tests/badge.svg)](https://github.com/zloirock/core-js/actions) [![eslint](https://github.com/zloirock/core-js/workflows/eslint/badge.svg)](https://github.com/zloirock/core-js/actions)
> Modular standard library for JavaScript. Includes polyfills for [ECMAScript up to 2021](https://github.com/zloirock/core-js#ecmascript): [promises](https://github.com/zloirock/core-js#ecmascript-promise), [symbols](https://github.com/zloirock/core-js#ecmascript-symbol), [collections](https://github.com/zloirock/core-js#ecmascript-collections), iterators, [typed arrays](https://github.com/zloirock/core-js#ecmascript-typed-arrays), many other features, [ECMAScript proposals](https://github.com/zloirock/core-js#ecmascript-proposals), [some cross-platform WHATWG / W3C features and proposals](#web-standards) like [`URL`](https://github.com/zloirock/core-js#url-and-urlsearchparams). You can load only required features or use it without global namespace pollution.
## As advertising: the author is looking for a good job -)
## [core-js@3, babel and a look into the future](https://github.com/zloirock/core-js/tree/master/docs/2019-03-19-core-js-3-babel-and-a-look-into-the-future.md)
## Raising funds
`core-js` isn't backed by a company, so the future of this project depends on you. Become a sponsor or a backer if you are interested in `core-js`: [**Open Collective**](https://opencollective.com/core-js), [**Patreon**](https://patreon.com/zloirock), **Bitcoin ( bc1qlea7544qtsmj2rayg0lthvza9fau63ux0fstcz )**.
---
<a href="https://opencollective.com/core-js/sponsor/0/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/0/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/1/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/1/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/2/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/2/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/3/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/3/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/4/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/4/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/5/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/5/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/6/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/6/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/7/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/7/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/8/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/8/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/9/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/9/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/10/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/10/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/11/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/11/avatar.svg"></a>
---
<a href="https://opencollective.com/core-js#backers" target="_blank"><img src="https://opencollective.com/core-js/backers.svg?width=890"></a>
---
[*Example of usage*](https://is.gd/XD4mRe):
```js
import 'core-js/actual'; // <- at the top of your entry point
Array.from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
[1, 2, 3, 4, 5].groupBy(it => it % 2); // => { 1: [1, 3, 5], 0: [2, 4] }
Promise.resolve(42).then(x => console.log(x)); // => 42
structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
queueMicrotask(() => console.log('called as microtask'));
```
*You can load only required features*:
```js
import 'core-js/actual/array/from'; // <- at the top of your entry point
import 'core-js/actual/array/group-by'; // <- at the top of your entry point
import 'core-js/actual/set'; // <- at the top of your entry point
import 'core-js/actual/promise'; // <- at the top of your entry point
import 'core-js/actual/structured-clone'; // <- at the top of your entry point
import 'core-js/actual/queue-microtask'; // <- at the top of your entry point
Array.from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
[1, 2, 3, 4, 5].groupBy(it => it % 2); // => { 1: [1, 3, 5], 0: [2, 4] }
Promise.resolve(42).then(x => console.log(x)); // => 42
structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
queueMicrotask(() => console.log('called as microtask'));
```
*Or use it without global namespace pollution*:
```js
import from from 'core-js-pure/actual/array/from';
import groupBy from 'core-js-pure/actual/array/group-by';
import Set from 'core-js-pure/actual/set';
import Promise from 'core-js-pure/actual/promise';
import structuredClone from 'core-js-pure/actual/structured-clone';
import queueMicrotask from 'core-js-pure/actual/queue-microtask';
from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
groupBy([1, 2, 3, 4, 5], it => it % 2); // => { 1: [1, 3, 5], 0: [2, 4] }
Promise.resolve(42).then(x => console.log(x)); // => 42
structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
queueMicrotask(() => console.log('called as microtask'));
```
**It's a global version (first 2 examples), for more info see [`core-js` documentation](https://github.com/zloirock/core-js/blob/master/README.md).**

1
themes/keepit/node_modules/core-js/actual/README.md generated vendored Normal file
View File

@@ -0,0 +1 @@
This folder contains entry points for all `core-js` features with dependencies. It's the recommended way for usage only required features.

View File

@@ -0,0 +1,3 @@
var parent = require('../stable/aggregate-error');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array-buffer/constructor');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array-buffer');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array-buffer/is-view');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array-buffer/slice');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/at');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/concat');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/copy-within');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/entries');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/every');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/fill');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/filter');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/find-index');
module.exports = parent;

View File

@@ -0,0 +1,4 @@
require('../../modules/esnext.array.find-last-index');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Array', 'findLastIndex');

View File

@@ -0,0 +1,4 @@
require('../../modules/esnext.array.find-last');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Array', 'findLast');

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/find');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/flat-map');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/flat');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/for-each');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/from');
module.exports = parent;

View File

@@ -0,0 +1,6 @@
require('../../modules/es.map');
require('../../modules/es.object.to-string');
require('../../modules/esnext.array.group-by-to-map');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Array', 'groupByToMap');

View File

@@ -0,0 +1,4 @@
require('../../modules/esnext.array.group-by');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Array', 'groupBy');

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/includes');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/index-of');
module.exports = parent;

View File

@@ -0,0 +1,13 @@
var parent = require('../../stable/array');
require('../../modules/es.map');
require('../../modules/es.object.to-string');
require('../../modules/esnext.array.find-last');
require('../../modules/esnext.array.find-last-index');
require('../../modules/esnext.array.group-by');
require('../../modules/esnext.array.group-by-to-map');
require('../../modules/esnext.array.to-reversed');
require('../../modules/esnext.array.to-sorted');
require('../../modules/esnext.array.to-spliced');
require('../../modules/esnext.array.with');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/is-array');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/iterator');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/join');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/keys');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/last-index-of');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/map');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/of');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/reduce-right');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/reduce');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/reverse');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/slice');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/some');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/sort');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/splice');
module.exports = parent;

View File

@@ -0,0 +1,4 @@
require('../../modules/esnext.array.to-reversed');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Array', 'toReversed');

View File

@@ -0,0 +1,5 @@
require('../../modules/es.array.sort');
require('../../modules/esnext.array.to-sorted');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Array', 'toSorted');

View File

@@ -0,0 +1,4 @@
require('../../modules/esnext.array.to-spliced');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Array', 'toSpliced');

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/array/values');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/at');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/concat');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/copy-within');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/entries');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/every');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/fill');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/filter');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/find-index');
module.exports = parent;

View File

@@ -0,0 +1,4 @@
require('../../../modules/esnext.array.find-last-index');
var entryVirtual = require('../../../internals/entry-virtual');
module.exports = entryVirtual('Array').findLastIndex;

View File

@@ -0,0 +1,4 @@
require('../../../modules/esnext.array.find-last');
var entryVirtual = require('../../../internals/entry-virtual');
module.exports = entryVirtual('Array').findLast;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/find');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/flat-map');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/flat');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/for-each');
module.exports = parent;

View File

@@ -0,0 +1,6 @@
require('../../../modules/es.map');
require('../../../modules/es.object.to-string');
require('../../../modules/esnext.array.group-by-to-map');
var entryVirtual = require('../../../internals/entry-virtual');
module.exports = entryVirtual('Array').groupByToMap;

View File

@@ -0,0 +1,4 @@
require('../../../modules/esnext.array.group-by');
var entryVirtual = require('../../../internals/entry-virtual');
module.exports = entryVirtual('Array').groupBy;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/includes');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/index-of');
module.exports = parent;

View File

@@ -0,0 +1,13 @@
var parent = require('../../../stable/array/virtual');
require('../../../modules/es.map');
require('../../../modules/es.object.to-string');
require('../../../modules/esnext.array.find-last');
require('../../../modules/esnext.array.find-last-index');
require('../../../modules/esnext.array.group-by');
require('../../../modules/esnext.array.group-by-to-map');
require('../../../modules/esnext.array.to-reversed');
require('../../../modules/esnext.array.to-sorted');
require('../../../modules/esnext.array.to-spliced');
require('../../../modules/esnext.array.with');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/iterator');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/join');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/keys');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/last-index-of');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/map');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/reduce-right');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/reduce');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/reverse');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/slice');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/some');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/sort');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/splice');
module.exports = parent;

View File

@@ -0,0 +1,4 @@
require('../../../modules/esnext.array.to-reversed');
var entryVirtual = require('../../../internals/entry-virtual');
module.exports = entryVirtual('Array').toReversed;

View File

@@ -0,0 +1,5 @@
require('../../../modules/es.array.sort');
require('../../../modules/esnext.array.to-sorted');
var entryVirtual = require('../../../internals/entry-virtual');
module.exports = entryVirtual('Array').toSorted;

View File

@@ -0,0 +1,4 @@
require('../../../modules/esnext.array.to-spliced');
var entryVirtual = require('../../../internals/entry-virtual');
module.exports = entryVirtual('Array').toSpliced;

View File

@@ -0,0 +1,3 @@
var parent = require('../../../stable/array/virtual/values');
module.exports = parent;

View File

@@ -0,0 +1,4 @@
require('../../../modules/esnext.array.with');
var entryVirtual = require('../../../internals/entry-virtual');
module.exports = entryVirtual('Array')['with'];

View File

@@ -0,0 +1,4 @@
require('../../modules/esnext.array.with');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Array', 'with');

3
themes/keepit/node_modules/core-js/actual/atob.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
var parent = require('../stable/atob');
module.exports = parent;

3
themes/keepit/node_modules/core-js/actual/btoa.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
var parent = require('../stable/btoa');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../stable/clear-immediate');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/data-view');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date/get-year');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date/now');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date/set-year');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date/to-gmt-string');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date/to-iso-string');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date/to-json');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date/to-primitive');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/date/to-string');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/dom-collections/for-each');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/dom-collections');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/dom-collections/iterator');
module.exports = parent;

View File

@@ -0,0 +1,3 @@
var parent = require('../../stable/dom-exception/constructor');
module.exports = parent;

Some files were not shown because too many files have changed in this diff Show More