0.0.3 • Published 8 years ago

ml-timer v0.0.3

Weekly downloads
-
License
apache2
Repository
-
Last release
8 years ago

ml-timer

API

  • __loop (Sync)
  __loop(
    function, // function
    timer,    // nubmer
  )
  • setTimeout (Async)
  setTimeout(
    function, // function
    timer,    // nubmer
  )

Example

  // Async, every 2s loop this function
  setInterval(function() {
    print(123);
  }, 2000);

  // Sync, every 2s loop this function
  __loop(function() {
    print(123);
  }, 2000);
0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago