basant307/AI_Governance_Project
048
1/**2 * Checks if the given value is null.3 *4 * This function tests whether the provided value is strictly equal to `null`.5 * It returns `true` if the value is `null`, and `false` otherwise.6 *7 * This function can also serve as a type predicate in TypeScript, narrowing the type of the argument to `null`.8 *9 * @param {unknown} x - The value to test if it is null.10 * @returns {x is null} True if the value is null, false otherwise.11 *12 * @example13 * const value1 = null;14 * const value2 = undefined;15 * const value3 = 42;16 *17 * console.log(isNull(value1)); // true18 * console.log(isNull(value2)); // false19 * console.log(isNull(value3)); // false20 */21declare function isNull(x: unknown): x is null;22 23export { isNull };24 