summaryrefslogtreecommitdiffstats
path: root/node_modules/extend-shallow
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/extend-shallow
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/extend-shallow')
-rw-r--r--node_modules/extend-shallow/LICENSE21
-rw-r--r--node_modules/extend-shallow/README.md97
-rw-r--r--node_modules/extend-shallow/index.js60
-rw-r--r--node_modules/extend-shallow/node_modules/is-extendable/LICENSE21
-rw-r--r--node_modules/extend-shallow/node_modules/is-extendable/README.md88
-rw-r--r--node_modules/extend-shallow/node_modules/is-extendable/index.d.ts5
-rw-r--r--node_modules/extend-shallow/node_modules/is-extendable/index.js14
-rw-r--r--node_modules/extend-shallow/node_modules/is-extendable/package.json98
-rw-r--r--node_modules/extend-shallow/package.json129
9 files changed, 0 insertions, 533 deletions
diff --git a/node_modules/extend-shallow/LICENSE b/node_modules/extend-shallow/LICENSE
deleted file mode 100644
index 99c9369..0000000
--- a/node_modules/extend-shallow/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014-2015, 2017, Jon Schlinkert.
-
-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/node_modules/extend-shallow/README.md b/node_modules/extend-shallow/README.md
deleted file mode 100644
index dee226f..0000000
--- a/node_modules/extend-shallow/README.md
+++ /dev/null
@@ -1,97 +0,0 @@
-# extend-shallow [![NPM version](https://img.shields.io/npm/v/extend-shallow.svg?style=flat)](https://www.npmjs.com/package/extend-shallow) [![NPM monthly downloads](https://img.shields.io/npm/dm/extend-shallow.svg?style=flat)](https://npmjs.org/package/extend-shallow) [![NPM total downloads](https://img.shields.io/npm/dt/extend-shallow.svg?style=flat)](https://npmjs.org/package/extend-shallow) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/extend-shallow.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/extend-shallow)
-
-> Extend an object with the properties of additional objects. node.js/javascript util.
-
-Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
-
-## Install
-
-Install with [npm](https://www.npmjs.com/):
-
-```sh
-$ npm install --save extend-shallow
-```
-
-## Usage
-
-```js
-var extend = require('extend-shallow');
-
-extend({a: 'b'}, {c: 'd'})
-//=> {a: 'b', c: 'd'}
-```
-
-Pass an empty object to shallow clone:
-
-```js
-var obj = {};
-extend(obj, {a: 'b'}, {c: 'd'})
-//=> {a: 'b', c: 'd'}
-```
-
-## About
-
-<details>
-<summary><strong>Contributing</strong></summary>
-
-Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
-
-</details>
-
-<details>
-<summary><strong>Running Tests</strong></summary>
-
-Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
-
-```sh
-$ npm install && npm test
-```
-
-</details>
-
-<details>
-<summary><strong>Building docs</strong></summary>
-
-_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
-
-To generate the readme, run the following command:
-
-```sh
-$ npm install -g verbose/verb#dev verb-generate-readme && verb
-```
-
-</details>
-
-### Related projects
-
-You might also be interested in these projects:
-
-* [extend-shallow](https://www.npmjs.com/package/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util. | [homepage](https://github.com/jonschlinkert/extend-shallow "Extend an object with the properties of additional objects. node.js/javascript util.")
-* [for-in](https://www.npmjs.com/package/for-in): Iterate over the own and inherited enumerable properties of an object, and return an object… [more](https://github.com/jonschlinkert/for-in) | [homepage](https://github.com/jonschlinkert/for-in "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js")
-* [for-own](https://www.npmjs.com/package/for-own): Iterate over the own enumerable properties of an object, and return an object with properties… [more](https://github.com/jonschlinkert/for-own) | [homepage](https://github.com/jonschlinkert/for-own "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.")
-* [is-plain-object](https://www.npmjs.com/package/is-plain-object): Returns true if an object was created by the `Object` constructor. | [homepage](https://github.com/jonschlinkert/is-plain-object "Returns true if an object was created by the `Object` constructor.")
-* [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject "Returns true if the value is an object and not an array or null.")
-* [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of "Get the native type of a value.")
-
-### Contributors
-
-| **Commits** | **Contributor** |
-| --- | --- |
-| 33 | [jonschlinkert](https://github.com/jonschlinkert) |
-| 1 | [pdehaan](https://github.com/pdehaan) |
-
-### Author
-
-**Jon Schlinkert**
-
-* [github/jonschlinkert](https://github.com/jonschlinkert)
-* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
-
-### License
-
-Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
-Released under the [MIT License](LICENSE).
-
-***
-
-_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on November 19, 2017._ \ No newline at end of file
diff --git a/node_modules/extend-shallow/index.js b/node_modules/extend-shallow/index.js
deleted file mode 100644
index c9582f8..0000000
--- a/node_modules/extend-shallow/index.js
+++ /dev/null
@@ -1,60 +0,0 @@
-'use strict';
-
-var isExtendable = require('is-extendable');
-var assignSymbols = require('assign-symbols');
-
-module.exports = Object.assign || function(obj/*, objects*/) {
- if (obj === null || typeof obj === 'undefined') {
- throw new TypeError('Cannot convert undefined or null to object');
- }
- if (!isObject(obj)) {
- obj = {};
- }
- for (var i = 1; i < arguments.length; i++) {
- var val = arguments[i];
- if (isString(val)) {
- val = toObject(val);
- }
- if (isObject(val)) {
- assign(obj, val);
- assignSymbols(obj, val);
- }
- }
- return obj;
-};
-
-function assign(a, b) {
- for (var key in b) {
- if (hasOwn(b, key)) {
- a[key] = b[key];
- }
- }
-}
-
-function isString(val) {
- return (val && typeof val === 'string');
-}
-
-function toObject(str) {
- var obj = {};
- for (var i in str) {
- obj[i] = str[i];
- }
- return obj;
-}
-
-function isObject(val) {
- return (val && typeof val === 'object') || isExtendable(val);
-}
-
-/**
- * Returns true if the given `key` is an own property of `obj`.
- */
-
-function hasOwn(obj, key) {
- return Object.prototype.hasOwnProperty.call(obj, key);
-}
-
-function isEnum(obj, key) {
- return Object.prototype.propertyIsEnumerable.call(obj, key);
-}
diff --git a/node_modules/extend-shallow/node_modules/is-extendable/LICENSE b/node_modules/extend-shallow/node_modules/is-extendable/LICENSE
deleted file mode 100644
index c0d7f13..0000000
--- a/node_modules/extend-shallow/node_modules/is-extendable/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015-2017, Jon Schlinkert.
-
-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/extend-shallow/node_modules/is-extendable/README.md b/node_modules/extend-shallow/node_modules/is-extendable/README.md
deleted file mode 100644
index 875b56a..0000000
--- a/node_modules/extend-shallow/node_modules/is-extendable/README.md
+++ /dev/null
@@ -1,88 +0,0 @@
-# is-extendable [![NPM version](https://img.shields.io/npm/v/is-extendable.svg?style=flat)](https://www.npmjs.com/package/is-extendable) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-extendable.svg?style=flat)](https://npmjs.org/package/is-extendable) [![NPM total downloads](https://img.shields.io/npm/dt/is-extendable.svg?style=flat)](https://npmjs.org/package/is-extendable) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-extendable.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-extendable)
-
-> Returns true if a value is a plain object, array or function.
-
-## Install
-
-Install with [npm](https://www.npmjs.com/):
-
-```sh
-$ npm install --save is-extendable
-```
-
-## Usage
-
-```js
-var isExtendable = require('is-extendable');
-```
-
-Returns true if the value is any of the following:
-
-* array
-* plain object
-* function
-
-## Notes
-
-All objects in JavaScript can have keys, but it's a pain to check for this, since we ether need to verify that the value is not `null` or `undefined` and:
-
-* the value is not a primitive, or
-* that the object is a plain object, function or array
-
-Also note that an `extendable` object is not the same as an [extensible object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isExtensible), which is one that (in es6) is not sealed, frozen, or marked as non-extensible using `preventExtensions`.
-
-## Release history
-
-### v1.0.0 - 2017/07/20
-
-**Breaking changes**
-
-* No longer considers date, regex or error objects to be extendable
-
-## About
-
-### Related projects
-
-* [assign-deep](https://www.npmjs.com/package/assign-deep): Deeply assign the enumerable properties and/or es6 Symbol properies of source objects to the target… [more](https://github.com/jonschlinkert/assign-deep) | [homepage](https://github.com/jonschlinkert/assign-deep "Deeply assign the enumerable properties and/or es6 Symbol properies of source objects to the target (first) object.")
-* [is-equal-shallow](https://www.npmjs.com/package/is-equal-shallow): Does a shallow comparison of two objects, returning false if the keys or values differ. | [homepage](https://github.com/jonschlinkert/is-equal-shallow "Does a shallow comparison of two objects, returning false if the keys or values differ.")
-* [is-plain-object](https://www.npmjs.com/package/is-plain-object): Returns true if an object was created by the `Object` constructor. | [homepage](https://github.com/jonschlinkert/is-plain-object "Returns true if an object was created by the `Object` constructor.")
-* [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject "Returns true if the value is an object and not an array or null.")
-* [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of "Get the native type of a value.")
-
-### Contributing
-
-Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
-
-### Building docs
-
-_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
-
-To generate the readme, run the following command:
-
-```sh
-$ npm install -g verbose/verb#dev verb-generate-readme && verb
-```
-
-### Running tests
-
-Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
-
-```sh
-$ npm install && npm test
-```
-
-### Author
-
-**Jon Schlinkert**
-
-* [github/jonschlinkert](https://github.com/jonschlinkert)
-* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
-
-### License
-
-Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
-Released under the [MIT License](LICENSE).
-
-***
-
-_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on July 20, 2017._ \ No newline at end of file
diff --git a/node_modules/extend-shallow/node_modules/is-extendable/index.d.ts b/node_modules/extend-shallow/node_modules/is-extendable/index.d.ts
deleted file mode 100644
index b96d507..0000000
--- a/node_modules/extend-shallow/node_modules/is-extendable/index.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export = isExtendable;
-
-declare function isExtendable(val: any): boolean;
-
-declare namespace isExtendable {}
diff --git a/node_modules/extend-shallow/node_modules/is-extendable/index.js b/node_modules/extend-shallow/node_modules/is-extendable/index.js
deleted file mode 100644
index a8b26ad..0000000
--- a/node_modules/extend-shallow/node_modules/is-extendable/index.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/*!
- * is-extendable <https://github.com/jonschlinkert/is-extendable>
- *
- * Copyright (c) 2015-2017, Jon Schlinkert.
- * Released under the MIT License.
- */
-
-'use strict';
-
-var isPlainObject = require('is-plain-object');
-
-module.exports = function isExtendable(val) {
- return isPlainObject(val) || typeof val === 'function' || Array.isArray(val);
-};
diff --git a/node_modules/extend-shallow/node_modules/is-extendable/package.json b/node_modules/extend-shallow/node_modules/is-extendable/package.json
deleted file mode 100644
index fe75c1d..0000000
--- a/node_modules/extend-shallow/node_modules/is-extendable/package.json
+++ /dev/null
@@ -1,98 +0,0 @@
-{
- "_from": "is-extendable@^1.0.1",
- "_id": "is-extendable@1.0.1",
- "_inBundle": false,
- "_integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
- "_location": "/extend-shallow/is-extendable",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "is-extendable@^1.0.1",
- "name": "is-extendable",
- "escapedName": "is-extendable",
- "rawSpec": "^1.0.1",
- "saveSpec": null,
- "fetchSpec": "^1.0.1"
- },
- "_requiredBy": [
- "/extend-shallow"
- ],
- "_resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "_shasum": "a7470f9e426733d81bd81e1155264e3a3507cab4",
- "_spec": "is-extendable@^1.0.1",
- "_where": "/home/pruss/Dev/3-minute-website/node_modules/extend-shallow",
- "author": {
- "name": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert"
- },
- "bugs": {
- "url": "https://github.com/jonschlinkert/is-extendable/issues"
- },
- "bundleDependencies": false,
- "dependencies": {
- "is-plain-object": "^2.0.4"
- },
- "deprecated": false,
- "description": "Returns true if a value is a plain object, array or function.",
- "devDependencies": {
- "gulp-format-md": "^1.0.0",
- "mocha": "^3.4.2"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "files": [
- "index.js",
- "index.d.ts"
- ],
- "homepage": "https://github.com/jonschlinkert/is-extendable",
- "keywords": [
- "array",
- "assign",
- "check",
- "date",
- "extend",
- "extendable",
- "extensible",
- "function",
- "is",
- "object",
- "regex",
- "test"
- ],
- "license": "MIT",
- "main": "index.js",
- "name": "is-extendable",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/jonschlinkert/is-extendable.git"
- },
- "scripts": {
- "test": "mocha"
- },
- "types": "index.d.ts",
- "verb": {
- "related": {
- "list": [
- "assign-deep",
- "is-equal-shallow",
- "is-plain-object",
- "isobject",
- "kind-of"
- ]
- },
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "plugins": [
- "gulp-format-md"
- ],
- "lint": {
- "reflinks": true
- }
- },
- "version": "1.0.1"
-}
diff --git a/node_modules/extend-shallow/package.json b/node_modules/extend-shallow/package.json
deleted file mode 100644
index 6d3e7c7..0000000
--- a/node_modules/extend-shallow/package.json
+++ /dev/null
@@ -1,129 +0,0 @@
-{
- "_from": "extend-shallow@^3.0.2",
- "_id": "extend-shallow@3.0.2",
- "_inBundle": false,
- "_integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
- "_location": "/extend-shallow",
- "_phantomChildren": {
- "is-plain-object": "2.0.4"
- },
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "extend-shallow@^3.0.2",
- "name": "extend-shallow",
- "escapedName": "extend-shallow",
- "rawSpec": "^3.0.2",
- "saveSpec": null,
- "fetchSpec": "^3.0.2"
- },
- "_requiredBy": [
- "/anymatch/micromatch",
- "/findup-sync/micromatch",
- "/nanomatch",
- "/readdirp/micromatch",
- "/regex-not",
- "/split-string",
- "/to-regex",
- "/webpack/micromatch"
- ],
- "_resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
- "_shasum": "26a71aaf073b39fb2127172746131c2704028db8",
- "_spec": "extend-shallow@^3.0.2",
- "_where": "/home/pruss/Dev/3-minute-website/node_modules/anymatch/node_modules/micromatch",
- "author": {
- "name": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert"
- },
- "bugs": {
- "url": "https://github.com/jonschlinkert/extend-shallow/issues"
- },
- "bundleDependencies": false,
- "contributors": [
- {
- "name": "Jon Schlinkert",
- "url": "http://twitter.com/jonschlinkert"
- },
- {
- "name": "Peter deHaan",
- "url": "http://about.me/peterdehaan"
- }
- ],
- "dependencies": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- },
- "deprecated": false,
- "description": "Extend an object with the properties of additional objects. node.js/javascript util.",
- "devDependencies": {
- "array-slice": "^1.0.0",
- "benchmarked": "^2.0.0",
- "for-own": "^1.0.0",
- "gulp-format-md": "^1.0.0",
- "is-plain-object": "^2.0.4",
- "kind-of": "^6.0.1",
- "minimist": "^1.2.0",
- "mocha": "^3.5.3",
- "object-assign": "^4.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "files": [
- "index.js"
- ],
- "homepage": "https://github.com/jonschlinkert/extend-shallow",
- "keywords": [
- "assign",
- "clone",
- "extend",
- "merge",
- "obj",
- "object",
- "object-assign",
- "object.assign",
- "prop",
- "properties",
- "property",
- "props",
- "shallow",
- "util",
- "utility",
- "utils",
- "value"
- ],
- "license": "MIT",
- "main": "index.js",
- "name": "extend-shallow",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/jonschlinkert/extend-shallow.git"
- },
- "scripts": {
- "test": "mocha"
- },
- "verb": {
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "related": {
- "list": [
- "extend-shallow",
- "for-in",
- "for-own",
- "is-plain-object",
- "isobject",
- "kind-of"
- ]
- },
- "plugins": [
- "gulp-format-md"
- ],
- "lint": {
- "reflinks": true
- }
- },
- "version": "3.0.2"
-}