Skip to content

Commit aecec4a

Browse files
committedApr 22, 2021
updates
1 parent 3551807 commit aecec4a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+212
-249
lines changed
 

‎dist/abstract-factory/abstract-factory-concept.js

-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
33
// Abstract Factory Concept Sample Code
44
const factory_a_1 = require("./factory-a");
55
const factory_b_1 = require("./factory-b");
6-
//module AbstractFactoryConcept {
76
class AbstractFactory {
87
// The Abstract Factory Concrete Class
98
static createObject(factory) {
@@ -27,4 +26,3 @@ let PRODUCT = AbstractFactory.createObject('ab');
2726
console.log(PRODUCT);
2827
PRODUCT = AbstractFactory.createObject('bc');
2928
console.log(PRODUCT);
30-
//}

‎dist/abstract-factory/big-chair.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
3-
exports.BigChair = void 0;
43
class BigChair {
54
constructor() {
65
this.name = "BigChair";
@@ -16,4 +15,4 @@ class BigChair {
1615
};
1716
}
1817
}
19-
exports.BigChair = BigChair;
18+
exports.default = BigChair;

0 commit comments

Comments
 (0)
Please sign in to comment.