Skip to content

Instantly share code, notes, and snippets.

View Sojer23's full-sized avatar
🎯
Focusing

Sojer23

🎯
Focusing
  • Klarna
  • Madrid, ES
View GitHub Profile
/////////////////////////////////////////////////
////////////////Partial<Type>////////////////////
/////////////////////////////////////////////////
// Toma como entrada un tipo y convierte todas sus
// propiedades en opcionales.
interface Developer {
id: number;
name: string;
@Sojer23
Sojer23 / promises
Created September 13, 2017 14:15
promises-exer
'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;
/**
'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;
/**