diff --git a/src/intrinsics/ecma262/Object.js b/src/intrinsics/ecma262/Object.js index 2185b8097..3039a1b23 100644 --- a/src/intrinsics/ecma262/Object.js +++ b/src/intrinsics/ecma262/Object.js @@ -234,7 +234,7 @@ export default function(realm: Realm): NativeFunctionValue { }); // ECMA262 19.1.2.1 - if (!realm.isCompatibleWith(realm.MOBILE_JSC_VERSION) && !realm.isCompatibleWith("mobile")) { + if (!realm.isCompatibleWith(realm.MOBILE_JSC_VERSION)) { func.defineNativeMethod("assign", 2, (context, [target, ...sources]) => { // 1. Let to be ? ToObject(target). let to = To.ToObject(realm, target);