mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
|
'use strict';
|
||
|
|
||
|
/** Class representing pizza toppings. */
|
||
|
class PizzaToppings {
|
||
|
/**
|
||
|
* Set whether sardines are included in the pizza toppings.
|
||
|
* @param {boolean} [bool] `true` to include sardines, `false` to omit them.
|
||
|
*/
|
||
|
setSardines(bool = true) {}
|
||
|
}
|