UNPKG

armpit

Version:

Another resource manager programming interface toolkit.

13 lines 330 B
import { isRestError } from "@azure/core-rest-pipeline"; export async function handleGet(promise) { try { return await promise; } catch (error) { if (isRestError(error) && error.statusCode === 404) { return null; } throw error; } } //# sourceMappingURL=azSdkUtils.js.map