aboutsummaryrefslogtreecommitdiff
path: root/node_modules/utils-merge
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/utils-merge')
-rw-r--r--node_modules/utils-merge/.travis.yml6
-rw-r--r--node_modules/utils-merge/LICENSE20
-rw-r--r--node_modules/utils-merge/README.md34
-rw-r--r--node_modules/utils-merge/index.js23
-rw-r--r--node_modules/utils-merge/package.json92
5 files changed, 0 insertions, 175 deletions
diff --git a/node_modules/utils-merge/.travis.yml b/node_modules/utils-merge/.travis.yml
deleted file mode 100644
index af92b02..0000000
--- a/node_modules/utils-merge/.travis.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-language: "node_js"
-node_js:
- - "0.4"
- - "0.6"
- - "0.8"
- - "0.10"
diff --git a/node_modules/utils-merge/LICENSE b/node_modules/utils-merge/LICENSE
deleted file mode 100644
index e33bd10..0000000
--- a/node_modules/utils-merge/LICENSE
+++ /dev/null
@@ -1,20 +0,0 @@
-(The MIT License)
-
-Copyright (c) 2013 Jared Hanson
-
-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/utils-merge/README.md b/node_modules/utils-merge/README.md
deleted file mode 100644
index 2f94e9b..0000000
--- a/node_modules/utils-merge/README.md
+++ /dev/null
@@ -1,34 +0,0 @@
-# utils-merge
-
-Merges the properties from a source object into a destination object.
-
-## Install
-
- $ npm install utils-merge
-
-## Usage
-
-```javascript
-var a = { foo: 'bar' }
- , b = { bar: 'baz' };
-
-merge(a, b);
-// => { foo: 'bar', bar: 'baz' }
-```
-
-## Tests
-
- $ npm install
- $ npm test
-
-[![Build Status](https://secure.travis-ci.org/jaredhanson/utils-merge.png)](http://travis-ci.org/jaredhanson/utils-merge)
-
-## Credits
-
- - [Jared Hanson](http://github.com/jaredhanson)
-
-## License
-
-[The MIT License](http://opensource.org/licenses/MIT)
-
-Copyright (c) 2013 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)>
diff --git a/node_modules/utils-merge/index.js b/node_modules/utils-merge/index.js
deleted file mode 100644
index 4265c69..0000000
--- a/node_modules/utils-merge/index.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * Merge object b with object a.
- *
- * var a = { foo: 'bar' }
- * , b = { bar: 'baz' };
- *
- * merge(a, b);
- * // => { foo: 'bar', bar: 'baz' }
- *
- * @param {Object} a
- * @param {Object} b
- * @return {Object}
- * @api public
- */
-
-exports = module.exports = function(a, b){
- if (a && b) {
- for (var key in b) {
- a[key] = b[key];
- }
- }
- return a;
-};
diff --git a/node_modules/utils-merge/package.json b/node_modules/utils-merge/package.json
deleted file mode 100644
index b4af50d..0000000
--- a/node_modules/utils-merge/package.json
+++ /dev/null
@@ -1,92 +0,0 @@
-{
- "_args": [
- [
- {
- "name": "utils-merge",
- "raw": "utils-merge@1.0.0",
- "rawSpec": "1.0.0",
- "scope": null,
- "spec": "1.0.0",
- "type": "version"
- },
- "/Users/warefhaque/CSC309/solutions_repo/node_modules/express"
- ]
- ],
- "_from": "utils-merge@1.0.0",
- "_id": "utils-merge@1.0.0",
- "_inCache": true,
- "_installable": true,
- "_location": "/utils-merge",
- "_npmUser": {
- "email": "jaredhanson@gmail.com",
- "name": "jaredhanson"
- },
- "_npmVersion": "1.2.25",
- "_phantomChildren": {},
- "_requested": {
- "name": "utils-merge",
- "raw": "utils-merge@1.0.0",
- "rawSpec": "1.0.0",
- "scope": null,
- "spec": "1.0.0",
- "type": "version"
- },
- "_requiredBy": [
- "/express"
- ],
- "_resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz",
- "_shasum": "0294fb922bb9375153541c4f7096231f287c8af8",
- "_shrinkwrap": null,
- "_spec": "utils-merge@1.0.0",
- "_where": "/Users/warefhaque/CSC309/solutions_repo/node_modules/express",
- "author": {
- "email": "jaredhanson@gmail.com",
- "name": "Jared Hanson",
- "url": "http://www.jaredhanson.net/"
- },
- "bugs": {
- "url": "http://github.com/jaredhanson/utils-merge/issues"
- },
- "dependencies": {},
- "description": "merge() utility function",
- "devDependencies": {
- "chai": "1.x.x",
- "mocha": "1.x.x"
- },
- "directories": {},
- "dist": {
- "shasum": "0294fb922bb9375153541c4f7096231f287c8af8",
- "tarball": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz"
- },
- "engines": {
- "node": ">= 0.4.0"
- },
- "homepage": "https://github.com/jaredhanson/utils-merge#readme",
- "keywords": [
- "util"
- ],
- "licenses": [
- {
- "type": "MIT",
- "url": "http://www.opensource.org/licenses/MIT"
- }
- ],
- "main": "./index",
- "maintainers": [
- {
- "email": "jaredhanson@gmail.com",
- "name": "jaredhanson"
- }
- ],
- "name": "utils-merge",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git://github.com/jaredhanson/utils-merge.git"
- },
- "scripts": {
- "test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
- },
- "version": "1.0.0"
-}