mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
# add dist
This commit is contained in:
21
ng2-components/ng2-alfresco-documentslist/dist/node_modules/is-arrayish/LICENSE
generated
vendored
Normal file
21
ng2-components/ng2-alfresco-documentslist/dist/node_modules/is-arrayish/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 JD Ballard
|
||||
|
||||
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.
|
16
ng2-components/ng2-alfresco-documentslist/dist/node_modules/is-arrayish/README.md
generated
vendored
Normal file
16
ng2-components/ng2-alfresco-documentslist/dist/node_modules/is-arrayish/README.md
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
# node-is-arrayish [](https://travis-ci.org/Qix-/node-is-arrayish) [](https://coveralls.io/r/Qix-/node-is-arrayish)
|
||||
> Determines if an object can be used like an Array
|
||||
|
||||
## Example
|
||||
```javascript
|
||||
var isArrayish = require('is-arrayish');
|
||||
|
||||
isArrayish([]); // true
|
||||
isArrayish({__proto__: []}); // true
|
||||
isArrayish({}); // false
|
||||
isArrayish({length:10}); // false
|
||||
```
|
||||
|
||||
## License
|
||||
Licensed under the [MIT License](http://opensource.org/licenses/MIT).
|
||||
You can find a copy of it in [LICENSE](LICENSE).
|
10
ng2-components/ng2-alfresco-documentslist/dist/node_modules/is-arrayish/index.js
generated
vendored
Normal file
10
ng2-components/ng2-alfresco-documentslist/dist/node_modules/is-arrayish/index.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function isArrayish(obj) {
|
||||
if (!obj) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return obj instanceof Array || Array.isArray(obj) ||
|
||||
(obj.length >= 0 && obj.splice instanceof Function);
|
||||
};
|
90
ng2-components/ng2-alfresco-documentslist/dist/node_modules/is-arrayish/package.json
generated
vendored
Normal file
90
ng2-components/ng2-alfresco-documentslist/dist/node_modules/is-arrayish/package.json
generated
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"is-arrayish@^0.2.1",
|
||||
"/Users/mromano/dev/dev-platform-webcomponents/ng2-components/ng2-alfresco-documentslist/node_modules/error-ex"
|
||||
]
|
||||
],
|
||||
"_from": "is-arrayish@>=0.2.1 <0.3.0",
|
||||
"_id": "is-arrayish@0.2.1",
|
||||
"_inCache": true,
|
||||
"_installable": true,
|
||||
"_location": "/is-arrayish",
|
||||
"_nodeVersion": "0.12.7",
|
||||
"_npmUser": {
|
||||
"email": "i.am.qix@gmail.com",
|
||||
"name": "qix"
|
||||
},
|
||||
"_npmVersion": "3.2.2",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"name": "is-arrayish",
|
||||
"raw": "is-arrayish@^0.2.1",
|
||||
"rawSpec": "^0.2.1",
|
||||
"scope": null,
|
||||
"spec": ">=0.2.1 <0.3.0",
|
||||
"type": "range"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/error-ex"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
||||
"_shasum": "77c99840527aa8ecb1a8ba697b80645a7a926a9d",
|
||||
"_shrinkwrap": null,
|
||||
"_spec": "is-arrayish@^0.2.1",
|
||||
"_where": "/Users/mromano/dev/dev-platform-webcomponents/ng2-components/ng2-alfresco-documentslist/node_modules/error-ex",
|
||||
"author": {
|
||||
"name": "Qix",
|
||||
"url": "http://github.com/qix-"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/qix-/node-is-arrayish/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Determines if an object can be used as an array",
|
||||
"devDependencies": {
|
||||
"coffee-script": "^1.9.3",
|
||||
"coveralls": "^2.11.2",
|
||||
"istanbul": "^0.3.17",
|
||||
"mocha": "^2.2.5",
|
||||
"should": "^7.0.1",
|
||||
"xo": "^0.6.1"
|
||||
},
|
||||
"directories": {},
|
||||
"dist": {
|
||||
"shasum": "77c99840527aa8ecb1a8ba697b80645a7a926a9d",
|
||||
"tarball": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
|
||||
},
|
||||
"gitHead": "53f22aa6ce557d7d31a3d1152a590a2df220df9d",
|
||||
"homepage": "https://github.com/qix-/node-is-arrayish#readme",
|
||||
"keywords": [
|
||||
"is",
|
||||
"array",
|
||||
"duck",
|
||||
"type",
|
||||
"arrayish",
|
||||
"similar",
|
||||
"proto",
|
||||
"prototype",
|
||||
"type"
|
||||
],
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"email": "i.am.qix@gmail.com",
|
||||
"name": "qix"
|
||||
}
|
||||
],
|
||||
"name": "is-arrayish",
|
||||
"optionalDependencies": {},
|
||||
"readme": "ERROR: No README data found!",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/qix-/node-is-arrayish.git"
|
||||
},
|
||||
"scripts": {
|
||||
"pretest": "xo",
|
||||
"test": "mocha --compilers coffee:coffee-script/register"
|
||||
},
|
||||
"version": "0.2.1"
|
||||
}
|
Reference in New Issue
Block a user