mirror of https://github.com/jkjoy/sunpeiwen.git
15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
|
import toPropertyKey from "./toPropertyKey.js";
|
||
|
export default function _defineProperty(obj, key, value) {
|
||
|
key = toPropertyKey(key);
|
||
|
if (key in obj) {
|
||
|
Object.defineProperty(obj, key, {
|
||
|
value: value,
|
||
|
enumerable: true,
|
||
|
configurable: true,
|
||
|
writable: true
|
||
|
});
|
||
|
} else {
|
||
|
obj[key] = value;
|
||
|
}
|
||
|
return obj;
|
||
|
}
|