UNPKG

@esri/arcgis-rest-request

Version:

Common methods and utilities for @esri/arcgis-rest-js packages.

10 lines 405 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.encodeOauthState = encodeOauthState; function encodeOauthState(stateId, state, originalUrl) { if (typeof state === "string" || !state) { return JSON.stringify({ id: stateId, originalUrl }); } return JSON.stringify(Object.assign({ id: stateId }, state)); } //# sourceMappingURL=encodeOauthState.js.map