One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| /** | |
| * Poblado de datos | |
| */ | |
| SET FOREIGN_KEY_CHECKS = 0; | |
| SET AUTOCOMMIT = 0; | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | |
| SET time_zone = "+00:00"; | |
| START TRANSACTION; | |
| INSERT INTO geo_departamentos VALUES (null, 'Alta Verapaz'); |
| import { Injectable } from '@angular/core'; | |
| import { environment } from '@environments/environment'; | |
| /** | |
| * Class of static methods to allow for consistent console logging. | |
| * @export | |
| */ | |
| @Injectable({ | |
| providedIn: 'root' |
| import { Logger } from './logger'; | |
| import { environment } from '@environments/environment'; | |
| describe('Logger Spec', () => { | |
| let debug; | |
| let info; | |
| let warn; | |
| let err; | |
| let log; |