"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); /** * Copyright (c) 2017-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ exports.default = function (realm) { // ECMA262 18.2.6.2 var name = "decodeURI"; return new _index.NativeFunctionValue(realm, name, name, 1, function (context, _ref, argCount, NewTarget) { var _ref2 = _slicedToArray(_ref, 1), encodedURI = _ref2[0]; if (NewTarget) throw realm.createErrorThrowCompletion(realm.intrinsics.TypeError, name + " is not a constructor"); encodedURI = encodedURI.throwIfNotConcrete(); // 1. Let uriString be ? ToString(encodedURI). var uriString = _singletons.To.ToString(realm, encodedURI); // 2. Let reservedURISet be a String containing one instance of each code unit valid in uriReserved plus "#". // 3. Return ? Decode(uriString, reservedURISet). try { return new _index.StringValue(realm, decodeURI(uriString)); } catch (e) { throw realm.createErrorThrowCompletion(realm.intrinsics.URIError, e.message); } }); }; var _index = require("../../values/index.js"); var _singletons = require("../../singletons.js"); //# sourceMappingURL=decodeURI.js.map