first commit
This commit is contained in:
41
build/node_modules/prepack/lib/intrinsics/ecma262/encodeURI.js
generated
vendored
Normal file
41
build/node_modules/prepack/lib/intrinsics/ecma262/encodeURI.js
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
"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.4
|
||||
var name = "encodeURI";
|
||||
return new _index.NativeFunctionValue(realm, name, name, 1, function (context, _ref, argCount, NewTarget) {
|
||||
var _ref2 = _slicedToArray(_ref, 1),
|
||||
uri = _ref2[0];
|
||||
|
||||
if (NewTarget) throw realm.createErrorThrowCompletion(realm.intrinsics.TypeError, name + " is not a constructor");
|
||||
|
||||
uri = uri.throwIfNotConcrete();
|
||||
// 1. Let uriString be ? ToString(uri).
|
||||
var uriString = _singletons.To.ToString(realm, uri);
|
||||
// 2. Let unescapedURISet be a String containing one instance of each code unit valid in uriReserved and uriUnescaped plus "#".
|
||||
// 3. Return ? Encode(uriString, unescapedURISet).
|
||||
try {
|
||||
return new _index.StringValue(realm, encodeURI(uriString));
|
||||
} catch (e) {
|
||||
throw realm.createErrorThrowCompletion(realm.intrinsics.URIError, e.message);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
var _index = require("../../values/index.js");
|
||||
|
||||
var _singletons = require("../../singletons.js");
|
||||
//# sourceMappingURL=encodeURI.js.map
|
||||
Reference in New Issue
Block a user