# add dist

This commit is contained in:
Mario Romano
2016-04-21 11:56:31 +01:00
parent 5914688467
commit 07807e7bc3
13499 changed files with 1808930 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
(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.

View File

@@ -0,0 +1,34 @@
# 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/)>

View File

@@ -0,0 +1,23 @@
/**
* 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;
};

View File

@@ -0,0 +1,85 @@
{
"_args": [
[
"utils-merge@1.0.0",
"/Users/mromano/dev/dev-platform-webcomponents/ng2-components/ng2-alfresco-documentslist/node_modules/connect"
]
],
"_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": [
"/connect"
],
"_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/mromano/dev/dev-platform-webcomponents/ng2-components/ng2-alfresco-documentslist/node_modules/connect",
"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"
}