Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion index.src.html
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,12 @@
2. If `config[m]` is a nested dictionary, set `clone[m]` to the result of
recursively running the <a>Clone Configuration</a> algorithm with
`config[m]`.
3. Otherwise, assign the value of `config[m]` to `clone[m]`.
3. Otherwise, assign a copy of `config[m]` to `clone[m]`.

Note: This implements a "deep-copy". These configuration objects are
frequently used as the input of asynchronous operations. Copying means that
modifying the original object while the operation is in flight won't change the
operation's outcome.


Signalling Configuration Support{#config-support-info}
Expand Down