🏃♂️
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('ul.notifications li.commit-notification li.delete button').each(function(i, li) { li.click(); }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('ul.notifications li.pull-request-notification li.delete button').each(function(i, li) { li.click(); }); |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ts; | |
(function (ts) { | |
// token > SyntaxKind.Identifer => token is a keyword | |
(function (SyntaxKind) { | |
SyntaxKind[SyntaxKind["Unknown"] = 0] = "Unknown"; | |
SyntaxKind[SyntaxKind["EndOfFileToken"] = 1] = "EndOfFileToken"; | |
SyntaxKind[SyntaxKind["SingleLineCommentTrivia"] = 2] = "SingleLineCommentTrivia"; | |
SyntaxKind[SyntaxKind["MultiLineCommentTrivia"] = 3] = "MultiLineCommentTrivia"; | |
SyntaxKind[SyntaxKind["NewLineTrivia"] = 4] = "NewLineTrivia"; | |
SyntaxKind[SyntaxKind["WhitespaceTrivia"] = 5] = "WhitespaceTrivia"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference path="node_modules/typescript/bin/typescriptServices.d.ts" /> | |
/// <reference path="node/node.d.ts" /> | |
import fs = require('fs'); | |
let libdts = 'node_modules/typescript/bin/lib.d.ts'; | |
eval(fs.readFileSync('node_modules/typescript/bin/typescriptServices.js', 'utf-8')); | |
function runTestFolder(dir: string) { | |
let files = fs.readdirSync(dir); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ignames = ["andy-ms", "mhegazy", "vladima"]; | |
var i = 100; | |
ignames.forEach(function (nm) { | |
$$('ul.notifications div.avatar-stack img[alt="@' + nm + '"]:first-child').forEach(function(el) { | |
var e = el.parentNode.parentNode.parentNode; | |
var b = e.getElementsByClassName("delete")[0].getElementsByTagName("button")[0]; | |
window.setTimeout(function() { b.click(); } , i += 100); | |
}); | |
}); |
Package | 30-Day Download Count |
---|---|
node | 5953555 |
jasmine | 1364049 |
q | 1342763 |
lodash | 1130666 |
react | 833429 |
express | 817781 |
jquery | 814943 |
chai | 646129 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 info it worked if it ends with ok | |
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe', | |
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
1 verbose cli 'publish', | |
1 verbose cli '--access', | |
1 verbose cli 'public' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose npm-session 00feed7f2f8e4e80 | |
5 verbose publish [ '.' ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 info it worked if it ends with ok | |
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe', | |
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
1 verbose cli 'install' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose npm-session 86fc37f069b18b6a | |
5 silly install runPreinstallTopLevelLifecycles | |
6 silly preinstall [email protected] | |
7 info lifecycle [email protected]~preinstall: [email protected] |
OlderNewer