Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
37 lines
712 B
JavaScript
37 lines
712 B
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var isCallable = require('is-callable');
|
|
|
|
var inspect = require('object-inspect');
|
|
|
|
var GetV = require('./GetV');
|
|
var isPropertyKey = require('./isPropertyKey');
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-getmethod
|
|
|
|
/** @type {import('./GetMethod')} */
|
|
module.exports = function GetMethod(O, P) {
|
|
// 7.3.9.1
|
|
if (!isPropertyKey(P)) {
|
|
throw new $TypeError('Assertion failed: P is not a Property Key');
|
|
}
|
|
|
|
// 7.3.9.2
|
|
var func = GetV(O, P);
|
|
|
|
// 7.3.9.4
|
|
if (func == null) {
|
|
return void 0;
|
|
}
|
|
|
|
// 7.3.9.5
|
|
if (!isCallable(func)) {
|
|
throw new $TypeError(inspect(P) + ' is not a function: ' + inspect(func));
|
|
}
|
|
|
|
// 7.3.9.6
|
|
return func;
|
|
};
|