summaryrefslogtreecommitdiffstats
path: root/node_modules/is-plain-object
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-plain-object
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-plain-object')
-rw-r--r--node_modules/is-plain-object/LICENSE21
-rw-r--r--node_modules/is-plain-object/README.md104
-rw-r--r--node_modules/is-plain-object/index.d.ts5
-rw-r--r--node_modules/is-plain-object/index.js37
-rw-r--r--node_modules/is-plain-object/package.json124
5 files changed, 0 insertions, 291 deletions
diff --git a/node_modules/is-plain-object/LICENSE b/node_modules/is-plain-object/LICENSE
deleted file mode 100644
index 3f2eca1..0000000
--- a/node_modules/is-plain-object/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014-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/is-plain-object/README.md b/node_modules/is-plain-object/README.md
deleted file mode 100644
index 1f9d0c8..0000000
--- a/node_modules/is-plain-object/README.md
+++ /dev/null
@@ -1,104 +0,0 @@
-# is-plain-object [![NPM version](https://img.shields.io/npm/v/is-plain-object.svg?style=flat)](https://www.npmjs.com/package/is-plain-object) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-plain-object.svg?style=flat)](https://npmjs.org/package/is-plain-object) [![NPM total downloads](https://img.shields.io/npm/dt/is-plain-object.svg?style=flat)](https://npmjs.org/package/is-plain-object) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-plain-object.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-plain-object)
-
-> Returns true if an object was created by the `Object` constructor.
-
-## Install
-
-Install with [npm](https://www.npmjs.com/):
-
-```sh
-$ npm install --save is-plain-object
-```
-
-Use [isobject](https://github.com/jonschlinkert/isobject) if you only want to check if the value is an object and not an array or null.
-
-## Usage
-
-```js
-var isPlainObject = require('is-plain-object');
-```
-
-**true** when created by the `Object` constructor.
-
-```js
-isPlainObject(Object.create({}));
-//=> true
-isPlainObject(Object.create(Object.prototype));
-//=> true
-isPlainObject({foo: 'bar'});
-//=> true
-isPlainObject({});
-//=> true
-```
-
-**false** when not created by the `Object` constructor.
-
-```js
-isPlainObject(1);
-//=> false
-isPlainObject(['foo', 'bar']);
-//=> false
-isPlainObject([]);
-//=> false
-isPlainObject(new Foo);
-//=> false
-isPlainObject(null);
-//=> false
-isPlainObject(Object.create(null));
-//=> false
-```
-
-## About
-
-### Related projects
-
-* [is-number](https://www.npmjs.com/package/is-number): Returns true if the value is a number. comprehensive tests. | [homepage](https://github.com/jonschlinkert/is-number "Returns true if the value is a number. comprehensive tests.")
-* [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).
-
-### Contributors
-
-| **Commits** | **Contributor** |
-| --- | --- |
-| 17 | [jonschlinkert](https://github.com/jonschlinkert) |
-| 6 | [stevenvachon](https://github.com/stevenvachon) |
-| 3 | [onokumus](https://github.com/onokumus) |
-| 1 | [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg) |
-
-### 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 11, 2017._ \ No newline at end of file
diff --git a/node_modules/is-plain-object/index.d.ts b/node_modules/is-plain-object/index.d.ts
deleted file mode 100644
index 74a44e9..0000000
--- a/node_modules/is-plain-object/index.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export = isPlainObject;
-
-declare function isPlainObject(o: any): boolean;
-
-declare namespace isPlainObject {}
diff --git a/node_modules/is-plain-object/index.js b/node_modules/is-plain-object/index.js
deleted file mode 100644
index c328484..0000000
--- a/node_modules/is-plain-object/index.js
+++ /dev/null
@@ -1,37 +0,0 @@
-/*!
- * is-plain-object <https://github.com/jonschlinkert/is-plain-object>
- *
- * Copyright (c) 2014-2017, Jon Schlinkert.
- * Released under the MIT License.
- */
-
-'use strict';
-
-var isObject = require('isobject');
-
-function isObjectObject(o) {
- return isObject(o) === true
- && Object.prototype.toString.call(o) === '[object Object]';
-}
-
-module.exports = function isPlainObject(o) {
- var ctor,prot;
-
- if (isObjectObject(o) === false) return false;
-
- // If has modified constructor
- ctor = o.constructor;
- if (typeof ctor !== 'function') return false;
-
- // If has modified prototype
- prot = ctor.prototype;
- if (isObjectObject(prot) === false) return false;
-
- // If constructor does not have an Object-specific method
- if (prot.hasOwnProperty('isPrototypeOf') === false) {
- return false;
- }
-
- // Most likely a plain Object
- return true;
-};
diff --git a/node_modules/is-plain-object/package.json b/node_modules/is-plain-object/package.json
deleted file mode 100644
index 960e2d0..0000000
--- a/node_modules/is-plain-object/package.json
+++ /dev/null
@@ -1,124 +0,0 @@
-{
- "_from": "is-plain-object@^2.0.3",
- "_id": "is-plain-object@2.0.4",
- "_inBundle": false,
- "_integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "_location": "/is-plain-object",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "is-plain-object@^2.0.3",
- "name": "is-plain-object",
- "escapedName": "is-plain-object",
- "rawSpec": "^2.0.3",
- "saveSpec": null,
- "fetchSpec": "^2.0.3"
- },
- "_requiredBy": [
- "/clone-deep",
- "/extend-shallow/is-extendable",
- "/mixin-deep/is-extendable",
- "/set-value"
- ],
- "_resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "_shasum": "2c163b3fafb1b606d9d17928f05c2a1c38e07677",
- "_spec": "is-plain-object@^2.0.3",
- "_where": "/home/pruss/Dev/3-minute-website/node_modules/set-value",
- "author": {
- "name": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert"
- },
- "bugs": {
- "url": "https://github.com/jonschlinkert/is-plain-object/issues"
- },
- "bundleDependencies": false,
- "contributors": [
- {
- "name": "Jon Schlinkert",
- "url": "http://twitter.com/jonschlinkert"
- },
- {
- "name": "Osman Nuri Okumuş",
- "url": "http://onokumus.com"
- },
- {
- "name": "Steven Vachon",
- "url": "https://svachon.com"
- },
- {
- "url": "https://github.com/wtgtybhertgeghgtwtg"
- }
- ],
- "dependencies": {
- "isobject": "^3.0.1"
- },
- "deprecated": false,
- "description": "Returns true if an object was created by the `Object` constructor.",
- "devDependencies": {
- "browserify": "^14.4.0",
- "chai": "^4.0.2",
- "gulp-format-md": "^1.0.0",
- "mocha": "^3.4.2",
- "mocha-phantomjs": "^4.1.0",
- "phantomjs": "^2.1.7",
- "uglify-js": "^3.0.24"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "files": [
- "index.d.ts",
- "index.js"
- ],
- "homepage": "https://github.com/jonschlinkert/is-plain-object",
- "keywords": [
- "check",
- "is",
- "is-object",
- "isobject",
- "javascript",
- "kind",
- "kind-of",
- "object",
- "plain",
- "type",
- "typeof",
- "value"
- ],
- "license": "MIT",
- "main": "index.js",
- "name": "is-plain-object",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/jonschlinkert/is-plain-object.git"
- },
- "scripts": {
- "browserify": "browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js",
- "test": "npm run test_node && npm run browserify && npm run test_browser",
- "test_browser": "mocha-phantomjs test/browser.html",
- "test_node": "mocha"
- },
- "types": "index.d.ts",
- "verb": {
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "plugins": [
- "gulp-format-md"
- ],
- "related": {
- "list": [
- "is-number",
- "isobject",
- "kind-of"
- ]
- },
- "lint": {
- "reflinks": true
- }
- },
- "version": "2.0.4"
-}