|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
671 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var $TypeError = require('es-errors/type');
|
|---|
| 4 |
|
|---|
| 5 | var Call = require('./Call');
|
|---|
| 6 | var IsArray = require('./IsArray');
|
|---|
| 7 | var GetV = require('./GetV');
|
|---|
| 8 | var isPropertyKey = require('../helpers/isPropertyKey');
|
|---|
| 9 |
|
|---|
| 10 | // https://262.ecma-international.org/6.0/#sec-invoke
|
|---|
| 11 |
|
|---|
| 12 | module.exports = function Invoke(O, P) {
|
|---|
| 13 | if (!isPropertyKey(P)) {
|
|---|
| 14 | throw new $TypeError('Assertion failed: P must be a Property Key');
|
|---|
| 15 | }
|
|---|
| 16 | var argumentsList = arguments.length > 2 ? arguments[2] : [];
|
|---|
| 17 | if (!IsArray(argumentsList)) {
|
|---|
| 18 | throw new $TypeError('Assertion failed: optional `argumentsList`, if provided, must be a List');
|
|---|
| 19 | }
|
|---|
| 20 | var func = GetV(O, P);
|
|---|
| 21 | return Call(func, O, argumentsList);
|
|---|
| 22 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.