Skip to content

Instantly share code, notes, and snippets.

View tisufa's full-sized avatar
:atom:
- nobody

Titus Sutio Fanpula tisufa

:atom:
- nobody
View GitHub Profile
@ThorstenHans
ThorstenHans / products.controller.js
Created December 4, 2017 11:43
restify demo - products.controller.js
class ProductsController {
constructor() {
this._storage = [];
}
_findProductById(id) {
const product = this._storage.find(product => product.id === id);
if (!product) {
throw new Error('Product not found.');