/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/helpers/supportsObjectHasOwn.js
7 строк
260 B
Alexander Akait
feat: reduce generated runtime code via method shorthand, spread, and Object.hasOwn (#21188)
16 июн 2026, 12:05
Не верифицирован
16 июн 2026, 12:05
8596a28
Код
Авторство
О чём код?
"use strict"; module.exports = function supportsObjectHasOwn() { // `Object.hasOwn` is es2022; cast to avoid a hard type reference for the // test tsconfig's older `lib` target return typeof (/** @type {EXPECTED_ANY} */ (Object).hasOwn) === "function"; };