You can clone with HTTPS or SSH.
//Example using a feasible//implementation of Promisefunction mapValues(){ var list = [1,2,3,4,5,6]; //doSomeAsyncTask returns a //promise of type //Promise[Array[Int]] var values = doSomeAsyncTask(list); //The map function will be executed //when the promise is resolved var mapped = values.map(Math.round); //returns a promise of mapped values return mapped;}