a zip code crypto-currency system good for red ONLY

1234567891011121314151617181920212223242526272829303132333435
  1. (function (factory) {
  2. if (typeof module === "object" && typeof module.exports === "object") {
  3. var v = factory(require, exports);
  4. if (v !== undefined) module.exports = v;
  5. }
  6. else if (typeof define === "function" && define.amd) {
  7. define(["require", "exports", "@angular/core"], factory);
  8. }
  9. })(function (require, exports) {
  10. "use strict";
  11. Object.defineProperty(exports, "__esModule", { value: true });
  12. var core_1 = require("@angular/core");
  13. /**
  14. * @name Avatar
  15. * @module ionic
  16. * @description
  17. * An Avatar is a component that creates a circular image for an item.
  18. * Avatars can be placed on the left or right side of an item with the `item-start` or `item-end` directive.
  19. * @see {@link /docs/components/#avatar-list Avatar Component Docs}
  20. */
  21. var Avatar = (function () {
  22. function Avatar() {
  23. }
  24. Avatar.decorators = [
  25. { type: core_1.Directive, args: [{
  26. selector: 'ion-avatar'
  27. },] },
  28. ];
  29. /** @nocollapse */
  30. Avatar.ctorParameters = function () { return []; };
  31. return Avatar;
  32. }());
  33. exports.Avatar = Avatar;
  34. });
  35. //# sourceMappingURL=avatar.js.map