/
githubmirror
/
tailwindcss
Обзор
Документация
Войти
/
githubmirror
/
tailwindcss
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.4.18
src/util/isPlainObject.js
8 строк
262 B
2hu
Allow plugins from a parent document to be used in an iframe (#12208)
23 окт 2023, 22:49
23 окт 2023, 22:49
63989b2
Код
Авторство
О чём код?
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 }