Ensure Date uses correct prototype in javascript functions
This commit is contained in:
parent
519d10fbd3
commit
3f4a144ef0
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ impl From<&Value> for JsValue {
|
||||||
false => JsValue::Rational(v.to_f64().unwrap_or_default()),
|
false => JsValue::Rational(v.to_f64().unwrap_or_default()),
|
||||||
},
|
},
|
||||||
Value::Datetime(v) => JsValue::from(JsObject::from_proto_and_data(
|
Value::Datetime(v) => JsValue::from(JsObject::from_proto_and_data(
|
||||||
Boa::default().intrinsics().constructors().object().prototype(),
|
Boa::default().intrinsics().constructors().date().prototype(),
|
||||||
ObjectData::date(v.into()),
|
ObjectData::date(v.into()),
|
||||||
)),
|
)),
|
||||||
Value::Duration(v) => JsValue::from(JsObject::from_proto_and_data(
|
Value::Duration(v) => JsValue::from(JsObject::from_proto_and_data(
|
||||||
|
|
Loading…
Reference in a new issue