git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

timeout.js (176B)


      1 // Generated by CoffeeScript 1.9.3
      2 (function() {
      3   module.exports = function(limit, msg) {
      4     if (Date.now() > limit) {
      5       throw new Error(msg);
      6     }
      7   };
      8 
      9 }).call(this);