summaryrefslogtreecommitdiff
path: root/node_modules/xtend
diff options
context:
space:
mode:
authorLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 23:08:57 +0300
committerLinuxWizard42 <computerwizard@linuxmail.org>2022-10-12 23:08:57 +0300
commit726b81b19251674e149ccfbb1abacbd837fc6db0 (patch)
treefbdbb227dc01357eb76e8222d76185bc124c5ca6 /node_modules/xtend
parent34f0890e175698940d49238097579f44e4d78c89 (diff)
downloadFlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.gz
FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.zst
Removed files that should not have been included in git
Diffstat (limited to 'node_modules/xtend')
-rw-r--r--node_modules/xtend/.npmignore1
-rw-r--r--node_modules/xtend/LICENCE19
-rw-r--r--node_modules/xtend/Makefile4
-rw-r--r--node_modules/xtend/README.md27
-rw-r--r--node_modules/xtend/has-keys.js7
-rw-r--r--node_modules/xtend/index.js25
-rw-r--r--node_modules/xtend/mutable.js25
-rw-r--r--node_modules/xtend/package.json62
-rw-r--r--node_modules/xtend/test.js63
9 files changed, 0 insertions, 233 deletions
diff --git a/node_modules/xtend/.npmignore b/node_modules/xtend/.npmignore
deleted file mode 100644
index 3c3629e..0000000
--- a/node_modules/xtend/.npmignore
+++ /dev/null
@@ -1 +0,0 @@
-node_modules
diff --git a/node_modules/xtend/LICENCE b/node_modules/xtend/LICENCE
deleted file mode 100644
index a23e08a..0000000
--- a/node_modules/xtend/LICENCE
+++ /dev/null
@@ -1,19 +0,0 @@
-Copyright (c) 2012 Raynos.
-
-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. \ No newline at end of file
diff --git a/node_modules/xtend/Makefile b/node_modules/xtend/Makefile
deleted file mode 100644
index d583fcf..0000000
--- a/node_modules/xtend/Makefile
+++ /dev/null
@@ -1,4 +0,0 @@
-browser:
- node ./support/compile
-
-.PHONY: browser \ No newline at end of file
diff --git a/node_modules/xtend/README.md b/node_modules/xtend/README.md
deleted file mode 100644
index 389adae..0000000
--- a/node_modules/xtend/README.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# xtend
-
-[![browser support][3]][4]
-
-Extend like a boss
-
-xtend is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes presedence.
-
-## Examples
-
-```js
-var extend = require("xtend")
-
-var combination = extend({
- a: "a"
-}, {
- b: "b"
-})
-// { a: "a", b: "b" }
-```
-
-
-## MIT Licenced
-
-
- [3]: http://ci.testling.com/Raynos/xtend.png
- [4]: http://ci.testling.com/Raynos/xtend
diff --git a/node_modules/xtend/has-keys.js b/node_modules/xtend/has-keys.js
deleted file mode 100644
index 62391e7..0000000
--- a/node_modules/xtend/has-keys.js
+++ /dev/null
@@ -1,7 +0,0 @@
-module.exports = hasKeys
-
-function hasKeys(source) {
- return source !== null &&
- (typeof source === "object" ||
- typeof source === "function")
-}
diff --git a/node_modules/xtend/index.js b/node_modules/xtend/index.js
deleted file mode 100644
index 20937d1..0000000
--- a/node_modules/xtend/index.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var Keys = require("object-keys")
-var hasKeys = require("./has-keys")
-
-module.exports = extend
-
-function extend() {
- var target = {}
-
- for (var i = 0; i < arguments.length; i++) {
- var source = arguments[i]
-
- if (!hasKeys(source)) {
- continue
- }
-
- var keys = Keys(source)
-
- for (var j = 0; j < keys.length; j++) {
- var name = keys[j]
- target[name] = source[name]
- }
- }
-
- return target
-}
diff --git a/node_modules/xtend/mutable.js b/node_modules/xtend/mutable.js
deleted file mode 100644
index 17454ae..0000000
--- a/node_modules/xtend/mutable.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var Keys = require("object-keys")
-var hasKeys = require("./has-keys")
-
-module.exports = extend
-
-function extend(target) {
- var sources = [].slice.call(arguments, 1)
-
- for (var i = 0; i < sources.length; i++) {
- var source = sources[i]
-
- if (!hasKeys(source)) {
- continue
- }
-
- var keys = Keys(source)
-
- for (var j = 0; j < keys.length; j++) {
- var name = keys[j]
- target[name] = source[name]
- }
- }
-
- return target
-}
diff --git a/node_modules/xtend/package.json b/node_modules/xtend/package.json
deleted file mode 100644
index d93be22..0000000
--- a/node_modules/xtend/package.json
+++ /dev/null
@@ -1,62 +0,0 @@
-{
- "name": "xtend",
- "version": "2.1.2",
- "description": "extend like a boss",
- "keywords": [
- "extend",
- "merge",
- "options",
- "opts",
- "object",
- "array"
- ],
- "author": "Raynos <raynos2@gmail.com>",
- "repository": "git://github.com/Raynos/xtend.git",
- "main": "index",
- "scripts": {
- "test": "node test"
- },
- "dependencies": {
- "object-keys": "~0.4.0"
- },
- "devDependencies": {
- "tape": "~1.1.0"
- },
- "homepage": "https://github.com/Raynos/xtend",
- "contributors": [
- {
- "name": "Jake Verbaten"
- },
- {
- "name": "Matt Esch"
- }
- ],
- "bugs": {
- "url": "https://github.com/Raynos/xtend/issues",
- "email": "raynos2@gmail.com"
- },
- "licenses": [
- {
- "type": "MIT",
- "url": "http://github.com/raynos/xtend/raw/master/LICENSE"
- }
- ],
- "testling": {
- "files": "test.js",
- "browsers": [
- "ie/7..latest",
- "firefox/16..latest",
- "firefox/nightly",
- "chrome/22..latest",
- "chrome/canary",
- "opera/12..latest",
- "opera/next",
- "safari/5.1..latest",
- "ipad/6.0..latest",
- "iphone/6.0..latest"
- ]
- },
- "engines": {
- "node": ">=0.4"
- }
-}
diff --git a/node_modules/xtend/test.js b/node_modules/xtend/test.js
deleted file mode 100644
index 3369d79..0000000
--- a/node_modules/xtend/test.js
+++ /dev/null
@@ -1,63 +0,0 @@
-var test = require("tape")
-var extend = require("./")
-var mutableExtend = require("./mutable")
-
-test("merge", function(assert) {
- var a = { a: "foo" }
- var b = { b: "bar" }
-
- assert.deepEqual(extend(a, b), { a: "foo", b: "bar" })
- assert.end()
-})
-
-test("replace", function(assert) {
- var a = { a: "foo" }
- var b = { a: "bar" }
-
- assert.deepEqual(extend(a, b), { a: "bar" })
- assert.end()
-})
-
-test("undefined", function(assert) {
- var a = { a: undefined }
- var b = { b: "foo" }
-
- assert.deepEqual(extend(a, b), { a: undefined, b: "foo" })
- assert.deepEqual(extend(b, a), { a: undefined, b: "foo" })
- assert.end()
-})
-
-test("handle 0", function(assert) {
- var a = { a: "default" }
- var b = { a: 0 }
-
- assert.deepEqual(extend(a, b), { a: 0 })
- assert.deepEqual(extend(b, a), { a: "default" })
- assert.end()
-})
-
-test("is immutable", function (assert) {
- var record = {}
-
- extend(record, { foo: "bar" })
- assert.equal(record.foo, undefined)
- assert.end()
-})
-
-test("null as argument", function (assert) {
- var a = { foo: "bar" }
- var b = null
- var c = void 0
-
- assert.deepEqual(extend(b, a, c), { foo: "bar" })
- assert.end()
-})
-
-test("mutable", function (assert) {
- var a = { foo: "bar" }
-
- mutableExtend(a, { bar: "baz" })
-
- assert.equal(a.bar, "baz")
- assert.end()
-})