Skip to content

maryrosecook/snowflake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Snowflake

Run code in particular circumstances

What is Snowflake?

Snowflake lets you run a piece of code once, or every so often. It is useful for debugging a function that is run frequently.

<script type="text/javascript" src="snowflake.js"></script>
<script type="text/javascript">
  var problemFn = function() {
    var interestingVar = 0;

    // print out interestingVar once, even though problemFn is run more than once
    snowflake.once(function() {
      console.log(interestingVar);
    });

    // print out interestingVar every two seconds
    snowflake.every(function() {
      console.log(interestingVar);
    }, 2000);

    interestingVar++;
  };

  while(true) {
    problemFn();
  };
</script>

Get the code

About

Run code in particular circumstances

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published