Skip to content

Instantly share code, notes, and snippets.

View dosjota's full-sized avatar
🏠
Trabajando desde casa

Juan González F. dosjota

🏠
Trabajando desde casa
View GitHub Profile
@dosjota
dosjota / test.js
Last active November 2, 2017 20:54 — forked from plataforma-co/test.js
Code Quality Test (Choose one of the files below)
'use strict';
// This class is used for logins
class Login {
constructor(hash) {
this.sessions = [];
this.users = [];
this.passwords = [];
Object.keys(hash).map(user => this.registerUser(user, hash[user]))
}