summaryrefslogtreecommitdiffstats
path: root/node_modules/is-extendable
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/is-extendable
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/is-extendable')
-rw-r--r--node_modules/is-extendable/LICENSE21
-rw-r--r--node_modules/is-extendable/README.md72
-rw-r--r--node_modules/is-extendable/index.js13
-rw-r--r--node_modules/is-extendable/package.json98
4 files changed, 0 insertions, 204 deletions
diff --git a/node_modules/is-extendable/LICENSE b/node_modules/is-extendable/LICENSE
deleted file mode 100644
index 65f90ac..0000000
--- a/node_modules/is-extendable/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015, 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/is-extendable/README.md b/node_modules/is-extendable/README.md
deleted file mode 100644
index e4cfaeb..0000000
--- a/node_modules/is-extendable/README.md
+++ /dev/null
@@ -1,72 +0,0 @@
-# is-extendable [![NPM version](https://badge.fury.io/js/is-extendable.svg)](http://badge.fury.io/js/is-extendable)
-
-> Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. "can the value have keys?"
-
-## Install
-
-Install with [npm](https://www.npmjs.com/)
-
-```sh
-$ npm i is-extendable --save
-```
-
-## Usage
-
-```js
-var isExtendable = require('is-extendable');
-```
-
-Returns true if the value is any of the following:
-
-* `array`
-* `regexp`
-* `plain object`
-* `function`
-* `date`
-* `error`
-
-## 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 an `object`, `function`
-
-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`.
-
-## Related projects
-
-* [assign-deep](https://github.com/jonschlinkert/assign-deep): Deeply assign the enumerable properties of source objects to a destination object.
-* [extend-shallow](https://github.com/jonschlinkert/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util.
-* [isobject](https://github.com/jonschlinkert/isobject): Returns true if the value is an object and not an array or null.
-* [is-plain-object](https://github.com/jonschlinkert/is-plain-object): Returns true if an object was created by the `Object` constructor.
-* [is-equal-shallow](https://github.com/jonschlinkert/is-equal-shallow): Does a shallow comparison of two objects, returning false if the keys or values differ.
-* [kind-of](https://github.com/jonschlinkert/kind-of): Get the native type of a value.
-
-## Running tests
-
-Install dev dependencies:
-
-```sh
-$ npm i -d && npm test
-```
-
-## Contributing
-
-Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/is-extendable/issues/new)
-
-## Author
-
-**Jon Schlinkert**
-
-+ [github/jonschlinkert](https://github.com/jonschlinkert)
-+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
-
-## License
-
-Copyright © 2015 Jon Schlinkert
-Released under the MIT license.
-
-***
-
-_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on July 04, 2015._ \ No newline at end of file
diff --git a/node_modules/is-extendable/index.js b/node_modules/is-extendable/index.js
deleted file mode 100644
index 4ee71a4..0000000
--- a/node_modules/is-extendable/index.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/*!
- * is-extendable <https://github.com/jonschlinkert/is-extendable>
- *
- * Copyright (c) 2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */
-
-'use strict';
-
-module.exports = function isExtendable(val) {
- return typeof val !== 'undefined' && val !== null
- && (typeof val === 'object' || typeof val === 'function');
-};
diff --git a/node_modules/is-extendable/package.json b/node_modules/is-extendable/package.json
deleted file mode 100644
index e6486e1..0000000
--- a/node_modules/is-extendable/package.json
+++ /dev/null
@@ -1,98 +0,0 @@
-{
- "_from": "is-extendable@^0.1.0",
- "_id": "is-extendable@0.1.1",
- "_inBundle": false,
- "_integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "_location": "/is-extendable",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "is-extendable@^0.1.0",
- "name": "is-extendable",
- "escapedName": "is-extendable",
- "rawSpec": "^0.1.0",
- "saveSpec": null,
- "fetchSpec": "^0.1.0"
- },
- "_requiredBy": [
- "/anymatch/braces/extend-shallow",
- "/anymatch/fill-range/extend-shallow",
- "/chokidar/extend-shallow",
- "/expand-brackets/extend-shallow",
- "/extglob/extend-shallow",
- "/findup-sync/braces/extend-shallow",
- "/findup-sync/fill-range/extend-shallow",
- "/mixin-object",
- "/readdirp/braces/extend-shallow",
- "/readdirp/fill-range/extend-shallow",
- "/set-value",
- "/set-value/extend-shallow",
- "/shallow-clone",
- "/snapdragon/extend-shallow",
- "/union-value",
- "/webpack/braces/extend-shallow",
- "/webpack/fill-range/extend-shallow"
- ],
- "_resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "_shasum": "62b110e289a471418e3ec36a617d472e301dfc89",
- "_spec": "is-extendable@^0.1.0",
- "_where": "/home/pruss/Dev/3-minute-website/node_modules/anymatch/node_modules/braces/node_modules/extend-shallow",
- "author": {
- "name": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert"
- },
- "bugs": {
- "url": "https://github.com/jonschlinkert/is-extendable/issues"
- },
- "bundleDependencies": false,
- "deprecated": false,
- "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"",
- "devDependencies": {
- "mocha": "*"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "files": [
- "index.js"
- ],
- "homepage": "https://github.com/jonschlinkert/is-extendable",
- "keywords": [
- "array",
- "assign",
- "check",
- "date",
- "extend",
- "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"
- },
- "verbiage": {
- "related": {
- "list": [
- "isobject",
- "is-plain-object",
- "kind-of",
- "is-extendable",
- "is-equal-shallow",
- "extend-shallow",
- "assign-deep"
- ]
- }
- },
- "version": "0.1.1"
-}