summaryrefslogtreecommitdiff
path: root/includes/external/discord/node_modules/fast-deep-equal
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-06-22 23:06:12 +0200
committerRaindropsSys <contact@minteck.org>2023-06-22 23:06:12 +0200
commit23563c7188e089929b60f9e10721c6fc43a220ff (patch)
treeedfe2b009c82900d4ac27db02222d2f68dcad846 /includes/external/discord/node_modules/fast-deep-equal
parent7a7a49332df7c852abbaa33c7e8e87f93d064d61 (diff)
downloadpluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.tar.gz
pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.tar.bz2
pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.zip
Updated 15 files, added includes/maintenance/deleteUnusedAssets.php and deleted 4944 files (automated)
Diffstat (limited to 'includes/external/discord/node_modules/fast-deep-equal')
-rw-r--r--includes/external/discord/node_modules/fast-deep-equal/LICENSE21
-rw-r--r--includes/external/discord/node_modules/fast-deep-equal/README.md96
-rw-r--r--includes/external/discord/node_modules/fast-deep-equal/es6/index.d.ts2
-rw-r--r--includes/external/discord/node_modules/fast-deep-equal/es6/react.d.ts2
-rw-r--r--includes/external/discord/node_modules/fast-deep-equal/index.d.ts4
-rw-r--r--includes/external/discord/node_modules/fast-deep-equal/package.json61
-rw-r--r--includes/external/discord/node_modules/fast-deep-equal/react.d.ts2
7 files changed, 0 insertions, 188 deletions
diff --git a/includes/external/discord/node_modules/fast-deep-equal/LICENSE b/includes/external/discord/node_modules/fast-deep-equal/LICENSE
deleted file mode 100644
index 7f15435..0000000
--- a/includes/external/discord/node_modules/fast-deep-equal/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2017 Evgeny Poberezkin
-
-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.
diff --git a/includes/external/discord/node_modules/fast-deep-equal/README.md b/includes/external/discord/node_modules/fast-deep-equal/README.md
deleted file mode 100644
index d3f4ffc..0000000
--- a/includes/external/discord/node_modules/fast-deep-equal/README.md
+++ /dev/null
@@ -1,96 +0,0 @@
-# fast-deep-equal
-The fastest deep equal with ES6 Map, Set and Typed arrays support.
-
-[![Build Status](https://travis-ci.org/epoberezkin/fast-deep-equal.svg?branch=master)](https://travis-ci.org/epoberezkin/fast-deep-equal)
-[![npm](https://img.shields.io/npm/v/fast-deep-equal.svg)](https://www.npmjs.com/package/fast-deep-equal)
-[![Coverage Status](https://coveralls.io/repos/github/epoberezkin/fast-deep-equal/badge.svg?branch=master)](https://coveralls.io/github/epoberezkin/fast-deep-equal?branch=master)
-
-
-## Install
-
-```bash
-npm install fast-deep-equal
-```
-
-
-## Features
-
-- ES5 compatible
-- works in node.js (8+) and browsers (IE9+)
-- checks equality of Date and RegExp objects by value.
-
-ES6 equal (`require('fast-deep-equal/es6')`) also supports:
-- Maps
-- Sets
-- Typed arrays
-
-
-## Usage
-
-```javascript
-var equal = require('fast-deep-equal');
-console.log(equal({foo: 'bar'}, {foo: 'bar'})); // true
-```
-
-To support ES6 Maps, Sets and Typed arrays equality use:
-
-```javascript
-var equal = require('fast-deep-equal/es6');
-console.log(equal(Int16Array([1, 2]), Int16Array([1, 2]))); // true
-```
-
-To use with React (avoiding the traversal of React elements' _owner
-property that contains circular references and is not needed when
-comparing the elements - borrowed from [react-fast-compare](https://github.com/FormidableLabs/react-fast-compare)):
-
-```javascript
-var equal = require('fast-deep-equal/react');
-var equal = require('fast-deep-equal/es6/react');
-```
-
-
-## Performance benchmark
-
-Node.js v12.6.0:
-
-```
-fast-deep-equal x 261,950 ops/sec ±0.52% (89 runs sampled)
-fast-deep-equal/es6 x 212,991 ops/sec ±0.34% (92 runs sampled)
-fast-equals x 230,957 ops/sec ±0.83% (85 runs sampled)
-nano-equal x 187,995 ops/sec ±0.53% (88 runs sampled)
-shallow-equal-fuzzy x 138,302 ops/sec ±0.49% (90 runs sampled)
-underscore.isEqual x 74,423 ops/sec ±0.38% (89 runs sampled)
-lodash.isEqual x 36,637 ops/sec ±0.72% (90 runs sampled)
-deep-equal x 2,310 ops/sec ±0.37% (90 runs sampled)
-deep-eql x 35,312 ops/sec ±0.67% (91 runs sampled)
-ramda.equals x 12,054 ops/sec ±0.40% (91 runs sampled)
-util.isDeepStrictEqual x 46,440 ops/sec ±0.43% (90 runs sampled)
-assert.deepStrictEqual x 456 ops/sec ±0.71% (88 runs sampled)
-
-The fastest is fast-deep-equal
-```
-
-To run benchmark (requires node.js 6+):
-
-```bash
-npm run benchmark
-```
-
-__Please note__: this benchmark runs against the available test cases. To choose the most performant library for your application, it is recommended to benchmark against your data and to NOT expect this benchmark to reflect the performance difference in your application.
-
-
-## Enterprise support
-
-fast-deep-equal package is a part of [Tidelift enterprise subscription](https://tidelift.com/subscription/pkg/npm-fast-deep-equal?utm_source=npm-fast-deep-equal&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) - it provides a centralised commercial support to open-source software users, in addition to the support provided by software maintainers.
-
-
-## Security contact
-
-To report a security vulnerability, please use the
-[Tidelift security contact](https://tidelift.com/security).
-Tidelift will coordinate the fix and disclosure. Please do NOT report security vulnerability via GitHub issues.
-
-
-## License
-
-[MIT](https://github.com/epoberezkin/fast-deep-equal/blob/master/LICENSE)
diff --git a/includes/external/discord/node_modules/fast-deep-equal/es6/index.d.ts b/includes/external/discord/node_modules/fast-deep-equal/es6/index.d.ts
deleted file mode 100644
index c7eb9c7..0000000
--- a/includes/external/discord/node_modules/fast-deep-equal/es6/index.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-declare const equal: (a: any, b: any) => boolean;
-export = equal;
diff --git a/includes/external/discord/node_modules/fast-deep-equal/es6/react.d.ts b/includes/external/discord/node_modules/fast-deep-equal/es6/react.d.ts
deleted file mode 100644
index c7eb9c7..0000000
--- a/includes/external/discord/node_modules/fast-deep-equal/es6/react.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-declare const equal: (a: any, b: any) => boolean;
-export = equal;
diff --git a/includes/external/discord/node_modules/fast-deep-equal/index.d.ts b/includes/external/discord/node_modules/fast-deep-equal/index.d.ts
deleted file mode 100644
index 3c042ca..0000000
--- a/includes/external/discord/node_modules/fast-deep-equal/index.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-declare module 'fast-deep-equal' {
- const equal: (a: any, b: any) => boolean;
- export = equal;
-}
diff --git a/includes/external/discord/node_modules/fast-deep-equal/package.json b/includes/external/discord/node_modules/fast-deep-equal/package.json
deleted file mode 100644
index 3cfe66c..0000000
--- a/includes/external/discord/node_modules/fast-deep-equal/package.json
+++ /dev/null
@@ -1,61 +0,0 @@
-{
- "name": "fast-deep-equal",
- "version": "3.1.3",
- "description": "Fast deep equal",
- "main": "index.js",
- "scripts": {
- "eslint": "eslint *.js benchmark/*.js spec/*.js",
- "build": "node build",
- "benchmark": "npm i && npm run build && cd ./benchmark && npm i && node ./",
- "test-spec": "mocha spec/*.spec.js -R spec",
- "test-cov": "nyc npm run test-spec",
- "test-ts": "tsc --target ES5 --noImplicitAny index.d.ts",
- "test": "npm run build && npm run eslint && npm run test-ts && npm run test-cov",
- "prepublish": "npm run build"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/epoberezkin/fast-deep-equal.git"
- },
- "keywords": [
- "fast",
- "equal",
- "deep-equal"
- ],
- "author": "Evgeny Poberezkin",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/epoberezkin/fast-deep-equal/issues"
- },
- "homepage": "https://github.com/epoberezkin/fast-deep-equal#readme",
- "devDependencies": {
- "coveralls": "^3.1.0",
- "dot": "^1.1.2",
- "eslint": "^7.2.0",
- "mocha": "^7.2.0",
- "nyc": "^15.1.0",
- "pre-commit": "^1.2.2",
- "react": "^16.12.0",
- "react-test-renderer": "^16.12.0",
- "sinon": "^9.0.2",
- "typescript": "^3.9.5"
- },
- "nyc": {
- "exclude": [
- "**/spec/**",
- "node_modules"
- ],
- "reporter": [
- "lcov",
- "text-summary"
- ]
- },
- "files": [
- "index.js",
- "index.d.ts",
- "react.js",
- "react.d.ts",
- "es6/"
- ],
- "types": "index.d.ts"
-}
diff --git a/includes/external/discord/node_modules/fast-deep-equal/react.d.ts b/includes/external/discord/node_modules/fast-deep-equal/react.d.ts
deleted file mode 100644
index c7eb9c7..0000000
--- a/includes/external/discord/node_modules/fast-deep-equal/react.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-declare const equal: (a: any, b: any) => boolean;
-export = equal;