Skip to content

Commit 5b82631

Browse files
authoredFeb 27, 2024··
Renamed an internal hasOwnProperty to hasOwn (#3159)
* Remove hasOwnProperty from utils Exported hasOwnProperty conflicts with exports.prototype.hasOwnProperty. Because it tries to override itself. * Add changeset * Add test * Replace hasOwnProperty with hasOwn * Update Test * Remove test * Add hasOwn into utils as safe replacement for hasOwnProperty * Remove test * Remove test * Map hasOwn to Object.prototype.hasOwnProperty.call To support old targets * Prefer simpler notation * Ok
1 parent 0bfa978 commit 5b82631

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed
 

‎.changeset/khaki-brooms-sort.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@emotion/react': patch
3+
---
4+
5+
Remove hasOwnProperty from utils

‎packages/react/src/emotion-element.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
insertStyles,
88
registerStyles
99
} from '@emotion/utils'
10-
import { hasOwnProperty, isBrowser } from './utils'
10+
import { hasOwn, isBrowser } from './utils'
1111
import { serializeStyles } from '@emotion/serialize'
1212
import { getLabelFromStackTrace } from './get-label-from-stack-trace'
1313
import { useInsertionEffectAlwaysWithSyncFallback } from '@emotion/use-insertion-effect-with-fallbacks'
@@ -31,7 +31,7 @@ export const createEmotionProps = (type: React.ElementType, props: Object) => {
3131
let newProps: any = {}
3232

3333
for (let key in props) {
34-
if (hasOwnProperty.call(props, key)) {
34+
if (hasOwn.call(props, key)) {
3535
newProps[key] = props[key]
3636
}
3737
}
@@ -133,7 +133,7 @@ let Emotion = /* #__PURE__ */ withEmotionCache<any, any>(
133133
const newProps = {}
134134
for (let key in props) {
135135
if (
136-
hasOwnProperty.call(props, key) &&
136+
hasOwn.call(props, key) &&
137137
key !== 'css' &&
138138
key !== typePropName &&
139139
(process.env.NODE_ENV === 'production' || key !== labelPropName)

‎packages/react/src/jsx-dev-runtime.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @flow
22
import * as ReactJSXRuntimeDev from 'react/jsx-dev-runtime'
33
import Emotion, { createEmotionProps } from './emotion-element'
4-
import { hasOwnProperty } from './utils'
4+
import { hasOwn } from './utils'
55

66
export const Fragment = ReactJSXRuntimeDev.Fragment
77

@@ -13,7 +13,7 @@ export function jsxDEV(
1313
source: any,
1414
self: any
1515
) {
16-
if (!hasOwnProperty.call(props, 'css')) {
16+
if (!hasOwn.call(props, 'css')) {
1717
return ReactJSXRuntimeDev.jsxDEV(
1818
type,
1919
props,

‎packages/react/src/jsx-runtime.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
// @flow
22
import * as ReactJSXRuntime from 'react/jsx-runtime'
33
import Emotion, { createEmotionProps } from './emotion-element'
4-
import { hasOwnProperty } from './utils'
4+
import { hasOwn } from './utils'
55

66
export const Fragment = ReactJSXRuntime.Fragment
77

88
export function jsx(type: any, props: any, key: any) {
9-
if (!hasOwnProperty.call(props, 'css')) {
9+
if (!hasOwn.call(props, 'css')) {
1010
return ReactJSXRuntime.jsx(type, props, key)
1111
}
1212

1313
return ReactJSXRuntime.jsx(Emotion, createEmotionProps(type, props), key)
1414
}
1515

1616
export function jsxs(type: any, props: any, key: any) {
17-
if (!hasOwnProperty.call(props, 'css')) {
17+
if (!hasOwn.call(props, 'css')) {
1818
return ReactJSXRuntime.jsxs(type, props, key)
1919
}
2020

‎packages/react/src/jsx.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @flow
22
import * as React from 'react'
33
import Emotion, { createEmotionProps } from './emotion-element'
4-
import { hasOwnProperty } from './utils'
4+
import { hasOwn } from './utils'
55

66
// $FlowFixMe
77
export const jsx: typeof React.createElement = function (
@@ -10,7 +10,7 @@ export const jsx: typeof React.createElement = function (
1010
) {
1111
let args = arguments
1212

13-
if (props == null || !hasOwnProperty.call(props, 'css')) {
13+
if (props == null || !hasOwn.call(props, 'css')) {
1414
// $FlowFixMe
1515
return React.createElement.apply(undefined, args)
1616
}

‎packages/react/src/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// @flow
22
export let isBrowser = typeof document !== 'undefined'
33

4-
export const hasOwnProperty = {}.hasOwnProperty
4+
export const hasOwn = {}.hasOwnProperty

0 commit comments

Comments
 (0)
Please sign in to comment.