JSDoc: Source: noop.timer.js

/**
 * NOOP Timer module.
 * @memberof noop
 * @namespace timer
 * @author cisco211
 * @copyright © 2019 by "cisco211"
 * @version 0.100
 */
(function(noop, undefined)
{
	'use strict';

	// #region Private
	// #endregion Private

	// #region Public
	noop.timer = new class Timer
	{
	}; // noop.timer = new class Timer
	// #endregion Public

} // (function(noop, undefined)
(window.noop = window.noop || new class NOOP{}));

// EOF