All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
571 B
JavaScript
23 lines
571 B
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
var isObject = require('es-object-atoms/isObject');
|
|
|
|
var Get = require('./Get');
|
|
var IsCallable = require('./IsCallable');
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-ordinaryhasinstance
|
|
|
|
module.exports = function OrdinaryHasInstance(C, O) {
|
|
if (!IsCallable(C)) {
|
|
return false;
|
|
}
|
|
if (!isObject(O)) {
|
|
return false;
|
|
}
|
|
var P = Get(C, 'prototype');
|
|
if (!isObject(P)) {
|
|
throw new $TypeError('OrdinaryHasInstance called on an object with an invalid prototype property.');
|
|
}
|
|
return O instanceof C;
|
|
};
|