@stdlib/utils-constructor-name
Determine the name of a value's constructor.
Found 484 results for stdutil
Determine the name of a value's constructor.
Convert between POSIX and Windows paths.
Platform byte order.
Return the global object.
Create a regular expression from a regular expression string.
Detect native Uint8Array support.
Determine the specification defined classification of an object.
Determine a value's type.
Detect native Float64Array support.
Platform float word order.
Detect native Uint16Array support.
Detect native Symbol support.
Function which does nothing.
Escape a regular expression string or pattern.
Detect native Uint32Array support.
Define (or modify) an object property.
Read data from stdin.
Detect native Symbol.toStringTag support.
Define a non-enumerable read-only property.
Return the current working directory.
Return the prototype of a provided object.
Detect native Float32Array support.
Detect native Buffer support.
Add a callback to the next tick queue.
Format an error message for production.
Define a read-only property.
Detect native Int16Array support.
Detect native Int32Array support.
Detect native Int8Array support.
Detect native generator function support.
Constant function.
Detect native Uint8ClampedArray support.
Return an array of an object's own enumerable and non-enumerable property names.
Return a property descriptor for an object's own property.
Alias for eval global.
Return the first index at which a given element can be found.
Define a non-enumerable read-only accessor.
Return an array of an object's own enumerable property names.
Return an array of an object's own enumerable property names and symbols.
Copy or deep clone a value to an arbitrary depth.
Standard utilities.
Detect native Symbol.toPrimitive support.
Detect native Symbol.hasInstance support.
Detect native Symbol.iterator support.
Define a non-enumerable read-write accessor.
Determine a function's name.
Detect native function name support.
Implement prototypical inheritance by replacing the prototype of one constructor with the prototype of another constructor.
Return an array of an object's own symbol properties.
Return a partial object copy excluding specified keys.
Return a partial object copy containing only specified keys.
Standard iterator utilities.
Detect native DataView support.
Wrap `require` in a try/catch block.
Return a JSON representation of an error object.
Detect native BigInt support.
Revive a JSON-serialized pseudorandom number generator (PRNG).
Invert an object, such that keys become values and values become keys.
Detect native ArrayBuffer support.
Define a read-write accessor.
Invert an object, such that keys become values and values become keys.
Define a read-only accessor.
Return an iterator's length.
Flatten an object.
Standard library error code database.
Parse a string as JSON.
Platform on which the current process is running.
Identity function.
Absolute pathname of the executable which started the current Node.js process.
Memoize a function.
Generate a frequency table.
Create a function that invokes a provided function with a specified number of arguments.
Define a non-enumerable property.
Detect native WebAssembly support.
Group values according to an indicator function and return group counts.
Detect native atob support.
Create an iterator which returns evenly spaced numbers over a specified interval.
Object containing the user environment.
Flatten an array.
Consume an entire iterator and return the last iterated value.
Create an iterator which returns a subsequence of iterated values from a provided iterator.
Node version.
Create an empty iterator.
Create an iterator which skips the last value of a provided iterator.
Unzip a zipped array (i.e., a nested array of tuples).
Create an iterator which invokes a function for each iterated value.
Group values as arrays associated with distinct keys.
Partially apply function arguments.
Return a property descriptor for an object's own or inherited property.
Detect native Proxy function support.
Return a filename extension.
Create an iterator which always returns the same value.
Invoke a function for each element in a collection and update the collection in-place.
Create a function that invokes a provided function with specified arguments.
Detect native Map support.
Detect native WeakSet support.
Detect native class support.
Detect native Set support.
Return an array of an object's own and inherited property names and symbols.
Detect native WeakMap support.
Set a nested property value.
Merge and extend objects.
Apply a function to each element in an array and assign the result to an element in an output array.
Function composition.
Linked list.
Return a directory name.
Apply a function to elements in two input arrays and assign the results to an output array.
Convert each object key to uppercase.
Test whether at least `n` iterated values are truthy.
Invoke a function for each grapheme cluster (i.e., user-perceived character) in a string.
Partially apply function arguments from the right.
Create an iterator which returns the first `n` values of a provided iterator.
Group values according to an indicator function.
Test whether all elements in a collection pass a test implemented by a predicate function.
Open a URL.
Return the numeric user identity of a calling process.
Invoke a function for each UTF-16 code unit in a string.
Return an array of an object's own enumerable property values.
Number of CPUs.
Define a memoized object property.
Invoke a function for each Unicode code point in a string.
Incremental parser for delimiter-separated values (DSV).
Generate a frequency table according to an indicator function.
Group values according to an indicator function and return group counts.
Create an iterator which iteratively returns the number of iterated values.
Apply a function against an accumulator and each element in a collection and return the accumulated result, iterating from right to left.
Parse a string as Newline-Delimited JSON (NDJSON).
Test whether at least one element in a collection passes a test implemented by a predicate function.
Function sequence.
Return an object's own property descriptors.
Standard base utilities for working with data formatted as delimiter-separated values (DSV).
Return an array of an object's own and inherited enumerable property names and symbols.
Detect `Object.defineProperties` support.
Invoke a function until a test condition is true.
Group values according to an indicator function.
Test whether all elements in a collection are truthy.
If a predicate function returns a truthy value, return `x`; otherwise, return `y`.
Create an iterator which iterates over the values of two or more iterators.
Invoke a function while a test condition is true.
Create a fluent interface for chaining together iterator methods.
Test whether all elements in a collection pass a test implemented by a predicate function.
Return a directory for user-specific configuration files.
Apply a function against an accumulator and each element in a collection and return the accumulated result.
Return an array of an object's own and inherited non-enumerable property names.
Transform a function into a sequence of functions each accepting a single argument.
Detect native SharedArrayBuffer support.
Extract a property value from each element of an object array.
Get a nested property value.
Test whether a collection contains `n` elements which pass a test implemented by a predicate function.
Detect native Symbol.asyncIterator support.
Create an object from key-value pairs.
Detect native Uint8ClampedArray support.
Transform a curried function into a function invoked with multiple arguments.
Create an iterator which appends additional values to the end of a provided iterator.
Return a function which formats an error message for production.
Detect native Symbol.replace support.
Return an array of an object's inherited writable property names and symbols.
Invoke a function for each element in a collection, iterating from right to left.
Invoke a function until a test condition is true.
Test whether a collection contains at least `n` elements which pass a test implemented by a predicate function, iterating from right to left.
Test whether a collection contains at least `n` elements which are truthy.
Function sequence.
Invoke a function while a test condition is true.
Return the current user's home directory.
Invoke a function for each element in a collection and update the collection in-place, iterating from right to left.
Invoke a function once for each element in a collection.
Function composition.
Return a JSON representation of a regular expression.
Test whether all elements in a collection pass a test implemented by a predicate function, iterating from right to left.
Invoke a function n times and return an array of accumulated function return values.
Create an iterator which removes consecutive duplicated values.
Invoke a function once for each element in a collection, iterating from right to left.
Invoke a function until a test condition is true.
Split values into two groups according to a predicate function.
Split values into two groups according to a predicate function.
Split values into two groups.
Invoke a function for each element in a collection and update the collection in-place, iterating from right to left.
Test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.
Return an array of an object's own enumerable and non-enumerable property names and symbols.
Create an iterator pipeline.
Test whether all elements in a collection pass a test implemented by a predicate function, iterating from right to left.
Execute scripts in parallel.
Group an object's own and inherited property values according to an indicator function.
Transform a function into a sequence of functions each accepting a single argument.
If a function does not return an error, invoke a callback with the function result; otherwise, invoke a second function.
Define (and/or modify) object properties.
Return a partial object copy excluding properties for which a predicate (function) returns a truthy value.
Define a configurable write-only accessor.
Invoke a function for each Unicode code point in a string, iterating from right to left.
Return the numeric group identity of a calling process.
Return an array of an object's own and inherited enumerable property names.
Detect native arrow function support.
Invoke a function for each UTF-16 code unit in a string, iterating from right to left.
Detect native Uint32Array support.
Advance an iterator.
Return the nth iterated value.
If a predicate function returns a truthy value, invoke `x`; otherwise, invoke `y`.
Create an iterator which returns the union of two or more iterators.
Test whether at least `n` iterated values pass a test implemented by a predicate function.
Test whether all elements in a collection fail a test implemented by a predicate function.
Execute functions in series, passing the results of one function as arguments to the next function.
Test whether a collection contains at least `n` elements which pass a test implemented by a predicate function.
If a function does not return an error, invoke a callback with the function result; otherwise, invoke a callback with a value `y`.
Test whether at least one element in a collection passes a test implemented by a predicate function.
Test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.
Return an array of an object's own enumerable property key-value pairs.
Detect native Symbol.toStringTag support.
Until a test condition is true, invoke a function for each element in a collection.
Execute a set of functions in parallel.
Find elements in an array-like object that satisfy a test condition.
Define a configurable read-only property.
Create a function that invokes a provided function according to a predicate function.
Map keys from one object to a new object having the same values.
Revive a JSON-serialized regular expression.
Return an array of an object's inherited non-enumerable symbol properties.
Test whether a collection contains at least `n` elements which pass a test implemented by a predicate function, iterating from right to left.
Detect native Symbol.isConcatSpreadable support.
Array containing command-line arguments passed when launching the calling process.
Return an array of an object's inherited non-enumerable property names.
Detect native Int8Array support.
Return the effective numeric group identity of a calling process.
Map values from one object to a new object having the same keys.
Create an iterator thunk.
Define a non-enumerable write-only accessor.
Define a write-only accessor.
Decorate a provided function such that the function's return value is provided as an argument to another function.
Create a function that applies arguments to a provided function after transforming arguments according to a callback function.
Create an iterator which returns the intersection of two or more iterators.
Detect native Symbol support.
Group an object's own property values according to an indicator function.
Invoke a function for each element in a collection and update the collection in-place.
Create a function that invokes a provided function with reordered arguments.
Return an array of an object's own and inherited symbol properties.
Return an array of an object's inherited writable symbol properties.
Return an object's own and inherited property descriptors.
Convert each object key to lowercase.
Return an array of an object's own and inherited enumerable property key-value pairs.
Convert between POSIX and Windows paths.
Change the current working directory.
Convert a collection to an object whose keys are determined by a provided function and whose values are the collection values, iterating from right to left.
Return an array of an object's inherited enumerable symbol properties.
Create an iterator which, while a test condition is false, invokes a function for each iterated value before returning the iterated value.
Create an iterator which invokes a function for each iterated value before returning the iterated value.
Create an iterator which returns a sequence of numbers according to a specified increment.
Create an iterator which returns evenly spaced dates over a specified interval.
Create an iterator which returns unique values according to a hash function.
Set a nested property value.
Create an iterator which prepends values to the beginning of a provided iterator.
Extract a nested property value from each element of an object array.
Create an iterator which both filters and maps the values of another iterator.