botbuilder-dialogs-adaptive-runtime-core
Version:
Bot Framework Adaptive Dialogs runtime core components
9 lines • 401 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.stringify = void 0;
// Necessary to help coerce `keyof T` keys to strings. Only used internally to this class.
const stringify = (k) => typeof k === 'string' ? k : k.toString();
exports.stringify = stringify;
//# sourceMappingURL=util.js.map