This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(index):23 [Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object…][0 … 99]0: ObjectBAIRRO: "ALTINÓPOLIS"CEP: "35053790"CIDADE: "GOVERNADOR VALADARES"CODCID: "3169"ENDERECO: "RUA ABEL COUTO"ESTADO: "MINAS GERAIS"SIGLA: "MG"__proto__: Object1: Object2: Object3: Object4: Object5: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Directive, Attribute} from '@angular/core'; | |
import {NgModel} from '@angular/common'; | |
@Directive({ | |
selector: '[mask]', | |
host: { | |
'(keyup)': 'onInputChange()' | |
} | |
}) | |
export class Mask { | |
maskPattern: string; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const userData = {name: 'lubien'} | |
localStorage.setItem('user', JSON.stringify(userData)) | |
const persisted = JSON.parse(localStorage.getItem('user')) | |
console.log(persisted) |
- https://medium.com/by-vinicius-reis/repository-pattern-n%C3%A3o-precisa-ser-chato-principalmente-com-laravel-d97235b31c7e
- https://medium.com/by-vinicius-reis/laravel-em-profundo-01-wtf-is-service-provider-a9bd817c4a7d
- https://medium.com/by-vinicius-reis/rip-mvc-obitu%C3%A1rio-b4b6e090d2ef
- https://medium.com/by-vinicius-reis/al%C3%A9m-do-mvc-pt-01-qual-o-problema-do-mvc-e615160f1100
- https://medium.com/by-vinicius-reis/al%C3%A9m-do-mvc-pt-02-camadas-a9745d29c8fc
- https://medium.com/by-vinicius-reis/trabalhando-com-servi%C3%A7os-no-javascript-864310cf386c
- https://blog.codecasts.com.br/vue-js-n%C3%A3o-%C3%A9-um-angular-simpificado-6394c18cc689
- https://blog.codecasts.com.br/ecossistema-js-01-plataformas-7a611608b58
- https://blog.codecasts.com.br/ecossistema-javascript-parte-04-transpilers-734f77422316
- https://blog.codecasts.com.br/codecasts-behind-the-curtains-setup-e-ferramentas-1fe58692d8ad
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** | |
* @ngdoc directive | |
* @name myapp.directive:forceLowerCase | |
* @description | |
* # forceLowerCase | |
*/ | |
angular.module('myapp') | |
.directive('forceLowerCase', function ($parse) { |