Skip to content

Instantly share code, notes, and snippets.

View spbroom's full-sized avatar

Stuart spbroom

View GitHub Profile
@spbroom
spbroom / getPromiseGenerator.js
Last active March 18, 2016 12:32
Perpetual Promise Generator for AngularJs
(function () {
'use strict';
angular
.module('app')
.factory('getPromiseGenerator', getPromiseGenerator);
function getPromiseGenerator($q) {
var generator = {
whenPromiseResolves: whenPromiseResolves,