UNPKG

711 BJavaScriptView Raw
1/**
2 * @license
3 * MOST Web Framework 2.0 Codename Blueshift
4 * Copyright (c) 2017, THEMOST LP All rights reserved
5 *
6 * Use of this source code is governed by an BSD-3-Clause license that can be
7 * found in the LICENSE file at https://themost.io/license
8 */
9/**
10 * @class
11 * @constructor
12 */
13function NoopHandler() {
14 //
15}
16
17/**
18 * @returns NoopHandler
19 * */
20NoopHandler.createInstance = function () {
21 return new NoopHandler();
22};
23
24if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
25 module.exports.NoopHandler = NoopHandler;
26 /**
27 * @returns {NoopHandler}
28 */
29 module.exports.createInstance = function() {
30 return NoopHandler.createInstance();
31 };
32}
\No newline at end of file