UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

28 lines 1.09 kB
"use strict"; // ------------------------------------------------------------------------------ // Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. // ------------------------------------------------------------------------------ Object.defineProperty(exports, "__esModule", { value: true }); exports.ClassMatcher = void 0; /** * @private */ var ClassMatcher = /** @class */ (function () { function ClassMatcher() { } /*============================================================================*/ /* Public Functions */ /*============================================================================*/ /** * @private */ ClassMatcher.prototype.matches = function (item) { return typeof item === "function"; }; return ClassMatcher; }()); exports.ClassMatcher = ClassMatcher; //# sourceMappingURL=ClassMatcher.js.map