UNPKG

adaptive-expressions

Version:
33 lines 1.34 kB
"use strict"; /** * @module adaptive-expressions */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.UriComponentToString = void 0; const expressionEvaluator_1 = require("../expressionEvaluator"); const expressionType_1 = require("../expressionType"); const functionUtils_1 = require("../functionUtils"); const returnType_1 = require("../returnType"); /** * Return the string version of a uniform resource identifier (URI) encoded string, effectively decoding the URI-encoded string. */ class UriComponentToString extends expressionEvaluator_1.ExpressionEvaluator { /** * Initializes a new instance of the [UriComponentToString](xref:adaptive-expressions.UriComponentToString) class. */ constructor() { super(expressionType_1.ExpressionType.UriComponentToString, UriComponentToString.evaluator(), returnType_1.ReturnType.String, functionUtils_1.FunctionUtils.validateUnary); } /** * @private */ static evaluator() { return functionUtils_1.FunctionUtils.apply((args) => decodeURIComponent(args[0]), functionUtils_1.FunctionUtils.verifyString); } } exports.UriComponentToString = UriComponentToString; //# sourceMappingURL=uriComponentToString.js.map