aimpress-chatbot/node_modules/botbuilder-dialogs-adaptive-runtime-core/src/util.ts
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +01:00

6 lines
292 B
TypeScript

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// Necessary to help coerce `keyof T` keys to strings. Only used internally to this class.
export const stringify = <K extends string | number | symbol>(k: K): string =>
typeof k === 'string' ? k : k.toString();