1 // ♓🌟 Piscēs ∷ function.js
2 // ====================================================================
4 // Copyright © 2022‐2023 Lady [@ Lady’s Computer].
6 // This Source Code Form is subject to the terms of the Mozilla Public
7 // License, v. 2.0. If a copy of the MPL was not distributed with this
8 // file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
10 import { ITERATOR
} from "./value.js";
14 * Creates a bound function from the provided function using the
15 * provided this value and arguments list.
17 * ☡ As with `call` and `construct`, the arguments must be passed as
23 * Returns a new function which calls the provided function with its
24 * first argument as the `this` value and the remaining arguments
27 * ※ This is effectively an alias for `Function::call.bind`.
31 // ☡ Because these functions are used to initialize module constants,
32 // they can’t depend on imports from elsewhere.
36 } = Function
.prototype;
37 const callBind
= Reflect
.apply(functionBind
, functionCall
, [
42 defineProperty
: defineOwnProperty
,
43 getPrototypeOf
: getPrototype
,
45 const { [ITERATOR
]: arrayIterator
} = Array
.prototype;
47 next
: arrayIteratorNext
,
48 } = getPrototype([][ITERATOR
]());
49 const argumentIterablePrototype
= {
54 call(arrayIterator
, this.args
, []),
60 bind
: ($, boundThis
, boundArgs
) =>
65 argumentIterablePrototype
,
66 { args
: { value
: boundArgs
} },
71 callBind(functionCall
, $),
73 { value
: $.length
+ 1 },
80 * Calls the provided function with the provided this value and
83 * ☡ This is an alias for `Reflect.apply`—the arguments must be
84 * passed as an arraylike.
89 * Constructs the provided function with the provided arguments list
92 * ☡ This is an alias for `Reflect.construct`—the arguments must be
93 * passed as an arraylike.
99 * Returns whether calling the provided function with no `this` value
100 * or arguments completes normally; that is, does not throw an error.
102 * ☡ This function will throw an error if the provided argument is not
105 export const completesNormally
= ($) => {
106 if (!isCallable($)) {
107 // The provided value is not callable; this is an error.
109 `Piscēs: Cannot determine completion of noncallable value: ${$}`,
112 // The provided value is callable.
114 // Attempt to call the function and return true if this succeeds.
118 // Calling the function did not succeed; return false.
125 * Returns the provided value.
127 * ※ This function can be called as a constructor. When used in an
128 * `extends` clause and called via `super`, it will set the value of
129 * `this` to the provided value, enabling it to be extended with
130 * private class features.
132 export const identity = function ($) {
136 /** Returns whether the provided value is callable. */
137 export const isCallable
= ($) => typeof $ === "function";
139 /** Returns whether the provided value is a constructor. */
140 export const isConstructor
= ($) => {
141 // The provided value is an object.
143 // Try constructing a new object with the provided value as its
144 // `new.target`. This will throw if the provided value is not a
153 // The provided value was not a constructor.
159 * Returns whether the provided object inherits from the prototype of
160 * the provided function.
162 export const ordinaryHasInstance
= makeCallable(
163 Function
.prototype[Symbol
.hasInstance
],