This file contains hidden or 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
///////////////////////////////////////////////// | |
////////////////Partial<Type>//////////////////// | |
///////////////////////////////////////////////// | |
// Toma como entrada un tipo y convierte todas sus | |
// propiedades en opcionales. | |
interface Developer { | |
id: number; | |
name: string; |
This file contains hidden or 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' | |
var request = require("request"), | |
Promise = require('bluebird'); | |
var usersL = ['dani8art', 'antgamdia', 'feserafim', 'pafmon', 'antonioruizcortes', 'jesusguerre']; | |
var url = "https://api.github.com/users/"; | |
var token = process.env.GITHUB_TOKEN; | |
/** |
This file contains hidden or 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' | |
var request = require("request"), | |
Promise = require('bluebird'); | |
var usersL = ['dani8art', 'antgamdia', 'feserafim', 'pafmon', 'antonioruizcortes', 'jesusguerre']; | |
var url = "https://api.github.com/users/"; | |
var token = process.env.GITHUB_TOKEN; | |
/** |