Calculates and returns a GUID (Globally Unique Identifier).
A string representing the generated GUID.
Creates a deep copy of an object.
The source object to clone.
Optional
_visited: any[]Optional internal parameter to track visited objects during cloning.
A deep copy of the source object.
Compares two values for equality.
The first value to compare.
The second value to compare.
true
if a
is equal to b
, otherwise false
.
Compares two arrays for equality.
The first array to compare.
The second array to compare.
true
if a
is equal to b
, otherwise false
.
Compares two objects for equality.
The first object to compare.
The second object to compare.
true
if a
is equal to b
, otherwise false
.
Provides methods for CSV manipulation.
Checks if a CSV table contains a specific column.
The CSV table to check.
The name of the column to search for.
true
if the column exists, otherwise false
.
Parses CSV content into a two-dimensional array of values.
The CSV content to parse.
Optional
options: CSVOptionsOptional parsing options.
A two-dimensional array representing the parsed CSV data.
Converts a two-dimensional array of values into CSV format.
The table of data to stringify.
Optional
options: CSVOptionsOptional stringification options.
A string representing the CSV data.
Converts an array of objects into CSV format.
The array of objects to convert.
Optional
options: CSVOptionsOptional conversion options.
A string representing the CSV data.
Checks if the provided value is an array.
The value to check.
true
if a
is an array, otherwise false
.
Checks if the provided value is a number.
The value to check.
true
if a
is a number, otherwise false
.
Checks if the provided value is an object.
The value to check.
true
if a
is an object, otherwise false
.
Checks if the provided value is a string.
The value to check.
true
if a
is a string, otherwise false
.
Merges properties from a source object into a target object.
The target object to merge into.
The source object whose properties will be merged.
Provides methods for XML manipulation.
Parses XML content into a JavaScript object.
The XML content to parse.
The parsed JavaScript object representing the XML structure.
Represents a collection of utility methods.