summaryrefslogtreecommitdiffstats
path: root/node_modules/assign-symbols
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/assign-symbols')
-rw-r--r--node_modules/assign-symbols/LICENSE21
-rw-r--r--node_modules/assign-symbols/README.md73
-rw-r--r--node_modules/assign-symbols/index.js40
-rw-r--r--node_modules/assign-symbols/package.json71
4 files changed, 0 insertions, 205 deletions
diff --git a/node_modules/assign-symbols/LICENSE b/node_modules/assign-symbols/LICENSE
deleted file mode 100644
index 65f90ac..0000000
--- a/node_modules/assign-symbols/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/assign-symbols/README.md b/node_modules/assign-symbols/README.md
deleted file mode 100644
index 422729d..0000000
--- a/node_modules/assign-symbols/README.md
+++ /dev/null
@@ -1,73 +0,0 @@
-# assign-symbols [![NPM version](https://badge.fury.io/js/assign-symbols.svg)](http://badge.fury.io/js/assign-symbols)
-
-> Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.
-
-From the [Mozilla Developer docs for Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol):
-
-> A symbol is a unique and immutable data type and may be used as an identifier for object properties. The symbol object is an implicit object wrapper for the symbol primitive data type.
-
-## Install
-
-Install with [npm](https://www.npmjs.com/)
-
-```sh
-$ npm i assign-symbols --save
-```
-
-## Usage
-
-```js
-var assignSymbols = require('assign-symbols');
-var obj = {};
-
-var one = {};
-var symbolOne = Symbol('aaa');
-one[symbolOne] = 'bbb';
-
-var two = {};
-var symbolTwo = Symbol('ccc');
-two[symbolTwo] = 'ddd';
-
-assignSymbols(obj, one, two);
-
-console.log(obj[symbolOne]);
-//=> 'bbb'
-console.log(obj[symbolTwo]);
-//=> 'ddd'
-```
-
-## Similar projects
-
-* [assign-deep](https://www.npmjs.com/package/assign-deep): Deeply assign the enumerable properties of source objects to a destination object. | [homepage](https://github.com/jonschlinkert/assign-deep)
-* [clone-deep](https://www.npmjs.com/package/clone-deep): Recursively (deep) clone JavaScript native types, like Object, Array, RegExp, Date as well as primitives. | [homepage](https://github.com/jonschlinkert/clone-deep)
-* [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)
-* [merge-deep](https://www.npmjs.com/package/merge-deep): Recursively merge values in a javascript object. | [homepage](https://github.com/jonschlinkert/merge-deep)
-* [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)
-
-## 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/assign-symbols/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 November 06, 2015._ \ No newline at end of file
diff --git a/node_modules/assign-symbols/index.js b/node_modules/assign-symbols/index.js
deleted file mode 100644
index c08a232..0000000
--- a/node_modules/assign-symbols/index.js
+++ /dev/null
@@ -1,40 +0,0 @@
-/*!
- * assign-symbols <https://github.com/jonschlinkert/assign-symbols>
- *
- * Copyright (c) 2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */
-
-'use strict';
-
-module.exports = function(receiver, objects) {
- if (receiver === null || typeof receiver === 'undefined') {
- throw new TypeError('expected first argument to be an object.');
- }
-
- if (typeof objects === 'undefined' || typeof Symbol === 'undefined') {
- return receiver;
- }
-
- if (typeof Object.getOwnPropertySymbols !== 'function') {
- return receiver;
- }
-
- var isEnumerable = Object.prototype.propertyIsEnumerable;
- var target = Object(receiver);
- var len = arguments.length, i = 0;
-
- while (++i < len) {
- var provider = Object(arguments[i]);
- var names = Object.getOwnPropertySymbols(provider);
-
- for (var j = 0; j < names.length; j++) {
- var key = names[j];
-
- if (isEnumerable.call(provider, key)) {
- target[key] = provider[key];
- }
- }
- }
- return target;
-};
diff --git a/node_modules/assign-symbols/package.json b/node_modules/assign-symbols/package.json
deleted file mode 100644
index 1ca5d9a..0000000
--- a/node_modules/assign-symbols/package.json
+++ /dev/null
@@ -1,71 +0,0 @@
-{
- "_from": "assign-symbols@^1.0.0",
- "_id": "assign-symbols@1.0.0",
- "_inBundle": false,
- "_integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
- "_location": "/assign-symbols",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "assign-symbols@^1.0.0",
- "name": "assign-symbols",
- "escapedName": "assign-symbols",
- "rawSpec": "^1.0.0",
- "saveSpec": null,
- "fetchSpec": "^1.0.0"
- },
- "_requiredBy": [
- "/extend-shallow"
- ],
- "_resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
- "_shasum": "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367",
- "_spec": "assign-symbols@^1.0.0",
- "_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/assign-symbols/issues"
- },
- "bundleDependencies": false,
- "deprecated": false,
- "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.",
- "devDependencies": {
- "mocha": "^3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "files": [
- "index.js"
- ],
- "homepage": "https://github.com/jonschlinkert/assign-symbols",
- "keywords": [
- "assign",
- "symbols"
- ],
- "license": "MIT",
- "main": "index.js",
- "name": "assign-symbols",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/jonschlinkert/assign-symbols.git"
- },
- "scripts": {
- "test": "mocha"
- },
- "verb": {
- "related": {
- "list": [
- "assign-deep",
- "mixin-deep",
- "merge-deep",
- "extend-shallow",
- "clone-deep"
- ]
- }
- },
- "version": "1.0.0"
-}