Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
neeldug committed Jul 22, 2021
1 parent 9b7314f commit 2c40305
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions boa/src/builtins/array/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,7 @@ impl Array {
return Ok(false);
}
// 2. Let spreadable be ? Get(O, @@isConcatSpreadable).
let spreadable = this
.get_field(WellKnownSymbols::is_concat_spreadable(), context)?;
let spreadable = this.get_field(WellKnownSymbols::is_concat_spreadable(), context)?;

// 3. If spreadable is not undefined, return ! ToBoolean(spreadable).
if !spreadable.is_undefined() {
Expand Down

0 comments on commit 2c40305

Please sign in to comment.