mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 05:10:05 +02:00
remove node_modules
This commit is contained in:
14
app/node_modules/throttleit/example.js
generated
vendored
14
app/node_modules/throttleit/example.js
generated
vendored
@@ -1,14 +0,0 @@
|
||||
|
||||
var throttle = require('./');
|
||||
|
||||
function onprogress(n) {
|
||||
console.log('progress %s%', n);
|
||||
}
|
||||
|
||||
onprogress = throttle(onprogress, 500);
|
||||
|
||||
var n = 0;
|
||||
setInterval(function(){
|
||||
if (n >= 100) return;
|
||||
onprogress(n++);
|
||||
}, 50);
|
Reference in New Issue
Block a user