aboutsummaryrefslogtreecommitdiff
path: root/node_modules/define-property
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/define-property
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/define-property')
-rw-r--r--node_modules/define-property/LICENSE21
-rw-r--r--node_modules/define-property/README.md77
-rw-r--r--node_modules/define-property/index.js31
-rw-r--r--node_modules/define-property/package.json51
4 files changed, 0 insertions, 180 deletions
diff --git a/node_modules/define-property/LICENSE b/node_modules/define-property/LICENSE
deleted file mode 100644
index 65f90aca8..000000000
--- a/node_modules/define-property/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/define-property/README.md b/node_modules/define-property/README.md
deleted file mode 100644
index 8cac698ad..000000000
--- a/node_modules/define-property/README.md
+++ /dev/null
@@ -1,77 +0,0 @@
-# define-property [![NPM version](https://badge.fury.io/js/define-property.svg)](http://badge.fury.io/js/define-property)
-
-> Define a non-enumerable property on an object.
-
-## Install
-
-Install with [npm](https://www.npmjs.com/)
-
-```sh
-$ npm i define-property --save
-```
-
-## Usage
-
-**Params**
-
-* `obj`: The object on which to define the property.
-* `prop`: The name of the property to be defined or modified.
-* `descriptor`: The descriptor for the property being defined or modified.
-
-```js
-var define = require('define-property');
-var obj = {};
-define(obj, 'foo', function(val) {
- return val.toUpperCase();
-});
-
-console.log(obj);
-//=> {}
-
-console.log(obj.foo('bar'));
-//=> 'BAR'
-```
-
-**get/set**
-
-```js
-define(obj, 'foo', {
- get: function() {},
- set: function() {}
-});
-```
-
-## Related projects
-
-* [delegate-object](https://www.npmjs.com/package/delegate-object): Copy properties from an object to another object, where properties with function values will be… [more](https://www.npmjs.com/package/delegate-object) | [homepage](https://github.com/doowb/delegate-object)
-* [forward-object](https://www.npmjs.com/package/forward-object): Copy properties from an object to another object, where properties with function values will be… [more](https://www.npmjs.com/package/forward-object) | [homepage](https://github.com/doowb/forward-object)
-* [mixin-deep](https://www.npmjs.com/package/mixin-deep): Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. | [homepage](https://github.com/jonschlinkert/mixin-deep)
-* [mixin-object](https://www.npmjs.com/package/mixin-object): Mixin the own and inherited properties of other objects onto the first object. Pass an… [more](https://www.npmjs.com/package/mixin-object) | [homepage](https://github.com/jonschlinkert/mixin-object)
-
-## 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/define-property/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 August 31, 2015._
diff --git a/node_modules/define-property/index.js b/node_modules/define-property/index.js
deleted file mode 100644
index 3e0e5e133..000000000
--- a/node_modules/define-property/index.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/*!
- * define-property <https://github.com/jonschlinkert/define-property>
- *
- * Copyright (c) 2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */
-
-'use strict';
-
-var isDescriptor = require('is-descriptor');
-
-module.exports = function defineProperty(obj, prop, val) {
- if (typeof obj !== 'object' && typeof obj !== 'function') {
- throw new TypeError('expected an object or function.');
- }
-
- if (typeof prop !== 'string') {
- throw new TypeError('expected `prop` to be a string.');
- }
-
- if (isDescriptor(val) && ('set' in val || 'get' in val)) {
- return Object.defineProperty(obj, prop, val);
- }
-
- return Object.defineProperty(obj, prop, {
- configurable: true,
- enumerable: false,
- writable: true,
- value: val
- });
-};
diff --git a/node_modules/define-property/package.json b/node_modules/define-property/package.json
deleted file mode 100644
index 43561bf56..000000000
--- a/node_modules/define-property/package.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
- "name": "define-property",
- "description": "Define a non-enumerable property on an object.",
- "version": "0.2.5",
- "homepage": "https://github.com/jonschlinkert/define-property",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/define-property",
- "bugs": {
- "url": "https://github.com/jonschlinkert/define-property/issues"
- },
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "devDependencies": {
- "mocha": "*",
- "should": "^7.0.4"
- },
- "keywords": [
- "define",
- "define-property",
- "enumerable",
- "key",
- "non",
- "non-enumerable",
- "object",
- "prop",
- "property",
- "value"
- ],
- "verb": {
- "related": {
- "list": [
- "mixin-deep",
- "mixin-object",
- "delegate-object",
- "forward-object"
- ]
- }
- },
- "dependencies": {
- "is-descriptor": "^0.1.0"
- }
-}