source: trip-planner-front/node_modules/@angular/compiler-cli/src/ngtsc/perf/index.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.5 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8(function (factory) {
9 if (typeof module === "object" && typeof module.exports === "object") {
10 var v = factory(require, exports);
11 if (v !== undefined) module.exports = v;
12 }
13 else if (typeof define === "function" && define.amd) {
14 define("@angular/compiler-cli/src/ngtsc/perf", ["require", "exports", "tslib", "@angular/compiler-cli/src/ngtsc/perf/src/api", "@angular/compiler-cli/src/ngtsc/perf/src/noop", "@angular/compiler-cli/src/ngtsc/perf/src/recorder"], factory);
15 }
16})(function (require, exports) {
17 "use strict";
18 Object.defineProperty(exports, "__esModule", { value: true });
19 exports.DelegatingPerfRecorder = exports.ActivePerfRecorder = exports.NOOP_PERF_RECORDER = void 0;
20 var tslib_1 = require("tslib");
21 tslib_1.__exportStar(require("@angular/compiler-cli/src/ngtsc/perf/src/api"), exports);
22 var noop_1 = require("@angular/compiler-cli/src/ngtsc/perf/src/noop");
23 Object.defineProperty(exports, "NOOP_PERF_RECORDER", { enumerable: true, get: function () { return noop_1.NOOP_PERF_RECORDER; } });
24 var recorder_1 = require("@angular/compiler-cli/src/ngtsc/perf/src/recorder");
25 Object.defineProperty(exports, "ActivePerfRecorder", { enumerable: true, get: function () { return recorder_1.ActivePerfRecorder; } });
26 Object.defineProperty(exports, "DelegatingPerfRecorder", { enumerable: true, get: function () { return recorder_1.DelegatingPerfRecorder; } });
27});
28//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21waWxlci1jbGkvc3JjL25ndHNjL3BlcmYvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7OztHQU1HOzs7Ozs7Ozs7Ozs7OztJQUVILHVGQUEwQjtJQUMxQixzRUFBOEM7SUFBdEMsMEdBQUEsa0JBQWtCLE9BQUE7SUFDMUIsOEVBQTBFO0lBQWxFLDhHQUFBLGtCQUFrQixPQUFBO0lBQUUsa0hBQUEsc0JBQXNCLE9BQUEiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9zcmMvYXBpJztcbmV4cG9ydCB7Tk9PUF9QRVJGX1JFQ09SREVSfSBmcm9tICcuL3NyYy9ub29wJztcbmV4cG9ydCB7QWN0aXZlUGVyZlJlY29yZGVyLCBEZWxlZ2F0aW5nUGVyZlJlY29yZGVyfSBmcm9tICcuL3NyYy9yZWNvcmRlcic7XG4iXX0=
Note: See TracBrowser for help on using the repository browser.