From 46e43f4bde4a35785b4997b81e86cd19f046b69b Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 21 Dec 2021 16:52:28 +0100 Subject: Commit --- src/node_modules/es-abstract/helpers/callBound.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/node_modules/es-abstract/helpers/callBound.js (limited to 'src/node_modules/es-abstract/helpers/callBound.js') diff --git a/src/node_modules/es-abstract/helpers/callBound.js b/src/node_modules/es-abstract/helpers/callBound.js new file mode 100644 index 0000000..9dc8fc5 --- /dev/null +++ b/src/node_modules/es-abstract/helpers/callBound.js @@ -0,0 +1,15 @@ +'use strict'; + +var GetIntrinsic = require('../GetIntrinsic'); + +var callBind = require('./callBind'); + +var $indexOf = callBind(GetIntrinsic('String.prototype.indexOf')); + +module.exports = function callBoundIntrinsic(name, allowMissing) { + var intrinsic = GetIntrinsic(name, !!allowMissing); + if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.')) { + return callBind(intrinsic); + } + return intrinsic; +}; -- cgit