es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
9 lines (8 loc) • 350 B
JavaScript
const require_eq = require("../util/eq.js");
//#region src/compat/_internal/assignValue.ts
const assignValue = (object, key, value) => {
const objValue = object[key];
if (!(Object.hasOwn(object, key) && require_eq.eq(objValue, value)) || value === void 0 && !(key in object)) object[key] = value;
};
//#endregion
exports.assignValue = assignValue;