GoogleOauth2.0 First implementation
First try for GoogleOauth2.0
This commit is contained in:
4
express-server/node_modules/pause/.npmignore
generated
vendored
Normal file
4
express-server/node_modules/pause/.npmignore
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
support
|
||||
test
|
||||
examples
|
||||
*.sock
|
5
express-server/node_modules/pause/History.md
generated
vendored
Normal file
5
express-server/node_modules/pause/History.md
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
|
||||
0.0.1 / 2010-01-03
|
||||
==================
|
||||
|
||||
* Initial release
|
7
express-server/node_modules/pause/Makefile
generated
vendored
Normal file
7
express-server/node_modules/pause/Makefile
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
test:
|
||||
@./node_modules/.bin/mocha \
|
||||
--require should \
|
||||
--reporter spec
|
||||
|
||||
.PHONY: test
|
29
express-server/node_modules/pause/Readme.md
generated
vendored
Normal file
29
express-server/node_modules/pause/Readme.md
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
# pause
|
||||
|
||||
Pause streams...
|
||||
|
||||
## 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.
|
29
express-server/node_modules/pause/index.js
generated
vendored
Normal file
29
express-server/node_modules/pause/index.js
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
module.exports = function(obj){
|
||||
var onData
|
||||
, onEnd
|
||||
, events = [];
|
||||
|
||||
// buffer data
|
||||
obj.on('data', onData = function(data, encoding){
|
||||
events.push(['data', data, encoding]);
|
||||
});
|
||||
|
||||
// buffer end
|
||||
obj.on('end', onEnd = function(data, encoding){
|
||||
events.push(['end', data, encoding]);
|
||||
});
|
||||
|
||||
return {
|
||||
end: function(){
|
||||
obj.removeListener('data', onData);
|
||||
obj.removeListener('end', onEnd);
|
||||
},
|
||||
resume: function(){
|
||||
this.end();
|
||||
for (var i = 0, len = events.length; i < len; ++i) {
|
||||
obj.emit.apply(obj, events[i]);
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
41
express-server/node_modules/pause/package.json
generated
vendored
Normal file
41
express-server/node_modules/pause/package.json
generated
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
"_from": "pause@0.0.1",
|
||||
"_id": "pause@0.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10=",
|
||||
"_location": "/pause",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "pause@0.0.1",
|
||||
"name": "pause",
|
||||
"escapedName": "pause",
|
||||
"rawSpec": "0.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/passport"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz",
|
||||
"_shasum": "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d",
|
||||
"_spec": "pause@0.0.1",
|
||||
"_where": "C:\\Users\\Georg\\GitHub\\SmartShopper\\express-server\\node_modules\\passport",
|
||||
"author": {
|
||||
"name": "TJ Holowaychuk",
|
||||
"email": "tj@vision-media.ca"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {},
|
||||
"deprecated": false,
|
||||
"description": "Pause streams...",
|
||||
"devDependencies": {
|
||||
"mocha": "*",
|
||||
"should": "*"
|
||||
},
|
||||
"keywords": [],
|
||||
"main": "index",
|
||||
"name": "pause",
|
||||
"version": "0.0.1"
|
||||
}
|
Reference in New Issue
Block a user