Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ensureCloudResourceLocation.js 578B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.ensureLocationSet = void 0;
  4. const error_1 = require("./error");
  5. function ensureLocationSet(location, feature) {
  6. if (!location) {
  7. throw new error_1.FirebaseError(`Cloud resource location is not set for this project but the operation ` +
  8. `you are attempting to perform in ${feature} requires it. ` +
  9. `Please see this documentation for more details: https://firebase.google.com/docs/projects/locations`);
  10. }
  11. }
  12. exports.ensureLocationSet = ensureLocationSet;