Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
4
Frontend-Learner/node_modules/only/.npmignore
generated
vendored
Normal file
4
Frontend-Learner/node_modules/only/.npmignore
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
support
|
||||
test
|
||||
examples
|
||||
*.sock
|
||||
5
Frontend-Learner/node_modules/only/History.md
generated
vendored
Normal file
5
Frontend-Learner/node_modules/only/History.md
generated
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
0.0.1 / 2010-01-03
|
||||
==================
|
||||
|
||||
* Initial release
|
||||
7
Frontend-Learner/node_modules/only/Makefile
generated
vendored
Normal file
7
Frontend-Learner/node_modules/only/Makefile
generated
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
test:
|
||||
@./node_modules/.bin/mocha \
|
||||
--require should \
|
||||
--reporter spec
|
||||
|
||||
.PHONY: test
|
||||
58
Frontend-Learner/node_modules/only/Readme.md
generated
vendored
Normal file
58
Frontend-Learner/node_modules/only/Readme.md
generated
vendored
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
|
||||
# only
|
||||
|
||||
Return whitelisted properties of an object.
|
||||
|
||||
## Installation
|
||||
|
||||
$ npm install only
|
||||
|
||||
## API
|
||||
|
||||
An array or space-delimited string may be given:
|
||||
|
||||
```js
|
||||
var obj = {
|
||||
name: 'tobi',
|
||||
last: 'holowaychuk',
|
||||
email: 'tobi@learnboost.com',
|
||||
_id: '12345'
|
||||
};
|
||||
|
||||
var user = only(obj, 'name last email');
|
||||
```
|
||||
|
||||
yields:
|
||||
|
||||
```js
|
||||
{
|
||||
name: 'tobi',
|
||||
last: 'holowaychuk',
|
||||
email: 'tobi@learnboost.com'
|
||||
}
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
|
||||
|
||||
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.
|
||||
10
Frontend-Learner/node_modules/only/index.js
generated
vendored
Normal file
10
Frontend-Learner/node_modules/only/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
module.exports = function(obj, keys){
|
||||
obj = obj || {};
|
||||
if ('string' == typeof keys) keys = keys.split(/ +/);
|
||||
return keys.reduce(function(ret, key){
|
||||
if (null == obj[key]) return ret;
|
||||
ret[key] = obj[key];
|
||||
return ret;
|
||||
}, {});
|
||||
};
|
||||
14
Frontend-Learner/node_modules/only/package.json
generated
vendored
Normal file
14
Frontend-Learner/node_modules/only/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"name": "only",
|
||||
"version": "0.0.2",
|
||||
"description": "return whitelisted properties of an object",
|
||||
"keywords": ["utility", "util", "object", "whitelist"],
|
||||
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
||||
"repository": "git://github.com/visionmedia/node-only",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"mocha": "*",
|
||||
"should": "*"
|
||||
},
|
||||
"main": "index"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue