/
ramanzes
/
MarkDownConverter
Обзор
Документация
Войти
/
ramanzes
/
MarkDownConverter
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
node_modules/tailwindcss/src/util/isPlainObject.js
8 строк
262 B
Роман Сахно
Initial commit
13 ноя 2025, 19:10
13 ноя 2025, 19:10
feeed38
Код
Авторство
О чём код?
export default function isPlainObject(value) { if (Object.prototype.toString.call(value) !== '[object Object]') { return false } const prototype = Object.getPrototypeOf(value) return prototype === null || Object.getPrototypeOf(prototype) === null }