a zip code crypto-currency system good for red ONLY

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. var __extends = (this && this.__extends) || (function () {
  2. var extendStatics = Object.setPrototypeOf ||
  3. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  4. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  5. return function (d, b) {
  6. extendStatics(d, b);
  7. function __() { this.constructor = d; }
  8. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  9. };
  10. })();
  11. (function (factory) {
  12. if (typeof module === "object" && typeof module.exports === "object") {
  13. var v = factory(require, exports);
  14. if (v !== undefined) module.exports = v;
  15. }
  16. else if (typeof define === "function" && define.amd) {
  17. define(["require", "exports", "@angular/core", "../../config/config", "../ion"], factory);
  18. }
  19. })(function (require, exports) {
  20. "use strict";
  21. Object.defineProperty(exports, "__esModule", { value: true });
  22. var core_1 = require("@angular/core");
  23. var config_1 = require("../../config/config");
  24. var ion_1 = require("../ion");
  25. /**
  26. * @name Badge
  27. * @module ionic
  28. * @description
  29. * Badges are simple components in Ionic containing numbers or text. You can display a badge to indicate that there is new information associated with the item it is on.
  30. * @see {@link /docs/components/#badges Badges Component Docs}
  31. */
  32. var Badge = (function (_super) {
  33. __extends(Badge, _super);
  34. function Badge(config, elementRef, renderer) {
  35. return _super.call(this, config, elementRef, renderer, 'badge') || this;
  36. }
  37. Badge.decorators = [
  38. { type: core_1.Directive, args: [{
  39. selector: 'ion-badge'
  40. },] },
  41. ];
  42. /** @nocollapse */
  43. Badge.ctorParameters = function () { return [
  44. { type: config_1.Config, },
  45. { type: core_1.ElementRef, },
  46. { type: core_1.Renderer, },
  47. ]; };
  48. return Badge;
  49. }(ion_1.Ion));
  50. exports.Badge = Badge;
  51. });
  52. //# sourceMappingURL=badge.js.map