schnee effeckt und fehler Korektur

This commit is contained in:
2023-08-14 17:52:24 +02:00
parent 4a843d4936
commit 79af4e9907
6813 changed files with 343821 additions and 356128 deletions

16
node_modules/next-tick/.editorconfig generated vendored Normal file
View File

@@ -0,0 +1,16 @@
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = tab
trim_trailing_whitespace = true
[*.md]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false

1
node_modules/next-tick/.github/FUNDING.yml generated vendored Normal file
View File

@@ -0,0 +1 @@
tidelift: "npm/next-tick"

4
node_modules/next-tick/.lint generated vendored
View File

@@ -11,4 +11,6 @@ ass
bitwise
nomen
plusplus
predef+ process, setImmediate, setTimeout, clearTimeout, document, MutationObserver, WebKitMutationObserver
vars
predef+ queueMicrotask, process, setImmediate, setTimeout, clearTimeout, document, MutationObserver, WebKitMutationObserver

4
node_modules/next-tick/.npmignore generated vendored
View File

@@ -1,4 +0,0 @@
.DS_Store
/node_modules
/npm-debug.log
/.lintcache

16
node_modules/next-tick/.travis.yml generated vendored
View File

@@ -1,16 +0,0 @@
sudo: false # http://docs.travis-ci.com/user/workers/container-based-infrastructure/
language: node_js
node_js:
- 0.12
- 4
- 5
- 6
before_install:
- mkdir node_modules; ln -s ../ node_modules/next-tick
notifications:
email:
- medikoo+next-tick@medikoo.com
script: "npm test && npm run lint"

13
node_modules/next-tick/CHANGELOG.md generated vendored Normal file
View File

@@ -0,0 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [1.1.0](https://github.com/medikoo/next-tick/compare/v1.0.0...v1.1.0) (2020-02-11)
### Features
* Add support for queueMicrotask (Closes [#13](https://github.com/medikoo/next-tick/issues/13)) ([471986e](https://github.com/medikoo/next-tick/commit/471986ee5f7179a498850cc03138a5ed5b9a248c))
## Changelog for previous versions
See `CHANGES` file

4
node_modules/next-tick/CHANGES generated vendored
View File

@@ -1,3 +1,7 @@
For recent changelog see CHANGELOG.md
-----
v1.0.0 -- 2016.06.09
* In case MutationObserver based solution ensure all callbacks are propagated
even if any on the way crashes (fixes #3)

30
node_modules/next-tick/LICENSE generated vendored
View File

@@ -1,21 +1,15 @@
The MIT License
ISC License
Copyright (C) 2012-2016 Mariusz Nowak
Copyright (c) 2012-2020, Mariusz Nowak, @medikoo, medikoo.com
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:
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
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.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.

21
node_modules/next-tick/README.md generated vendored
View File

@@ -4,7 +4,8 @@
To be used in environment agnostic modules that need nextTick functionality.
- When run in Node.js `process.nextTick` is used
- In modern browsers microtask resolution is guaranteed by `MutationObserver`
- In modern engines, microtask resolution is guaranteed by `queueMicrotask`
- In older browsers, `MutationObserver` is used as a fallback
- In other engines `setImmediate` or `setTimeout(fn, 0)` is used as fallback.
- If none of the above is supported module resolves to `null`
@@ -17,8 +18,24 @@ In your project path:
#### Browser
You can easily bundle `next-tick` for browser with any CJS bundler, e.g. [modules-webmake](https://github.com/medikoo/modules-webmake)
To port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)
## Tests [![Build Status](https://api.travis-ci.org/medikoo/next-tick.png?branch=master)](https://travis-ci.org/medikoo/next-tick)
$ npm test
## Security contact information
To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.
---
<div align="center">
<b>
<a href="https://tidelift.com/subscription/pkg/npm-next-tick?utm_source=npm-next-tick&utm_medium=referral&utm_campaign=readme">Get professional support for d with a Tidelift subscription</a>
</b>
<br>
<sub>
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
</sub>
</div>

17
node_modules/next-tick/index.js generated vendored
View File

@@ -1,13 +1,11 @@
'use strict';
var callable, byObserver;
callable = function (fn) {
var ensureCallable = function (fn) {
if (typeof fn !== 'function') throw new TypeError(fn + " is not a function");
return fn;
};
byObserver = function (Observer) {
var byObserver = function (Observer) {
var node = document.createTextNode(''), queue, currentQueue, i = 0;
new Observer(function () {
var callback;
@@ -33,7 +31,7 @@ byObserver = function (Observer) {
}
}).observe(node, { characterData: true });
return function (fn) {
callable(fn);
ensureCallable(fn);
if (queue) {
if (typeof queue === 'function') queue = [queue, fn];
else queue.push(fn);
@@ -50,6 +48,11 @@ module.exports = (function () {
return process.nextTick;
}
// queueMicrotask
if (typeof queueMicrotask === "function") {
return function (cb) { queueMicrotask(ensureCallable(cb)); };
}
// MutationObserver
if ((typeof document === 'object') && document) {
if (typeof MutationObserver === 'function') return byObserver(MutationObserver);
@@ -59,12 +62,12 @@ module.exports = (function () {
// W3C Draft
// http://dvcs.w3.org/hg/webperf/raw-file/tip/specs/setImmediate/Overview.html
if (typeof setImmediate === 'function') {
return function (cb) { setImmediate(callable(cb)); };
return function (cb) { setImmediate(ensureCallable(cb)); };
}
// Wide available standard
if ((typeof setTimeout === 'function') || (typeof setTimeout === 'object')) {
return function (cb) { setTimeout(callable(cb), 0); };
return function (cb) { setTimeout(ensureCallable(cb), 0); };
}
return null;

83
node_modules/next-tick/package.json generated vendored
View File

@@ -1,60 +1,27 @@
{
"_from": "next-tick@~1.0.0",
"_id": "next-tick@1.0.0",
"_inBundle": false,
"_integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=",
"_location": "/next-tick",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "next-tick@~1.0.0",
"name": "next-tick",
"escapedName": "next-tick",
"rawSpec": "~1.0.0",
"saveSpec": null,
"fetchSpec": "~1.0.0"
},
"_requiredBy": [
"/es5-ext"
],
"_resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
"_shasum": "ca86d1fe8828169b0120208e3dc8424b9db8342c",
"_spec": "next-tick@~1.0.0",
"_where": "/var/www/html/jason/WeihnachtenMelly/node_modules/es5-ext",
"author": {
"name": "Mariusz Nowak",
"email": "medyk@medikoo.com",
"url": "http://www.medikoo.com/"
},
"bugs": {
"url": "https://github.com/medikoo/next-tick/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Environment agnostic nextTick polyfill",
"devDependencies": {
"tad": "^0.2.4",
"xlint": "^0.2.2",
"xlint-jslint-medikoo": "^0.1.4"
},
"homepage": "https://github.com/medikoo/next-tick#readme",
"keywords": [
"nexttick",
"setImmediate",
"setTimeout",
"async"
],
"license": "MIT",
"name": "next-tick",
"repository": {
"type": "git",
"url": "git://github.com/medikoo/next-tick.git"
},
"scripts": {
"lint": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream",
"lint-console": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch",
"test": "node node_modules/tad/bin/tad"
},
"version": "1.0.0"
"name": "next-tick",
"version": "1.1.0",
"description": "Environment agnostic nextTick polyfill",
"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
"keywords": [
"nexttick",
"setImmediate",
"setTimeout",
"async"
],
"repository": {
"type": "git",
"url": "git://github.com/medikoo/next-tick.git"
},
"devDependencies": {
"tad": "^3.0.1",
"xlint": "^0.2.2",
"xlint-jslint-medikoo": "^0.1.4"
},
"scripts": {
"lint": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream",
"lint-console": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch",
"test": "node node_modules/tad/bin/tad"
},
"license": "ISC"
}