gitextract_ziuw_gsl/ ├── .gitignore ├── 1 creational/ │ ├── 1_constructor.js │ ├── 2_factory.js │ ├── 3_prototype.js │ └── 4_singleton.js ├── 2 structural/ │ ├── 5_adapter.js │ ├── 6_decorator.js │ ├── 7_facade.js │ ├── 8_flyweight.js │ └── 9_proxy.js └── 3 behaviour/ ├── 10_chain_of_responsibility.js ├── 11_comand.js ├── 12_iterator.js ├── 13_mediator.js ├── 14_observer.js ├── 15_state.js ├── 16_strategy.js └── 17_template.js