UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

19 lines 752 B
import lodashIsEqual from 'lodash/isEqual.js'; /** * Performs a deep comparison between two values to determine if they are * equivalent. * * **Note:** This method supports comparing arrays, array buffers, booleans, * date objects, error objects, maps, numbers, `Object` objects, regexes, * sets, strings, symbols, and typed arrays. `Object` objects are compared * by their own, not inherited, enumerable properties. Functions and DOM * nodes are **not** supported. * * @param value - The value to compare. * @param other - The other value to compare. * @returns Returns `true` if the values are equivalent, else `false`. */ export function isEqual(value, other) { return lodashIsEqual(value, other); } //# sourceMappingURL=lang.js.map