2019-11-18 14:39:32 +00:00
|
|
|
// Ported from js-yaml v3.13.1:
|
|
|
|
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
|
|
|
|
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
|
2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2019-11-18 14:39:32 +00:00
|
|
|
|
2020-08-24 23:43:54 +00:00
|
|
|
export function isObject(value: unknown): value is Record<string, unknown> {
|
2019-11-18 14:39:32 +00:00
|
|
|
return value !== null && typeof value === "object";
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isNegativeZero(i: number): boolean {
|
|
|
|
return i === 0 && Number.NEGATIVE_INFINITY === 1 / i;
|
|
|
|
}
|
2024-07-06 08:36:19 +00:00
|
|
|
|
2024-08-28 05:37:14 +00:00
|
|
|
export function isPlainObject(object: unknown): object is object {
|
|
|
|
return Object.prototype.toString.call(object) === "[object Object]";
|
2024-07-06 08:36:19 +00:00
|
|
|
}
|