export function isFulfilled( input: PromiseSettledResult ): input is PromiseFulfilledResult { return input.status === 'fulfilled'; }