Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import RSVP from 'rsvp';
// An always passing promise used to throttle other promises
export default function wait(duration) {
return new RSVP.Promise((resolve) => {
setTimeout(() => {
resolve(`Waited ${duration}ms`);
}, duration);
});
}