| Index: ui/webui/resources/js/assert.js
|
| diff --git a/ui/webui/resources/js/assert.js b/ui/webui/resources/js/assert.js
|
| index 94f25358294c5ff224e4633950b572d752f564da..a404b68c78ce0a025d4af8a91660b7c13a63c032 100644
|
| --- a/ui/webui/resources/js/assert.js
|
| +++ b/ui/webui/resources/js/assert.js
|
| @@ -65,8 +65,9 @@ function assertInstanceof(value, type, opt_message) {
|
| // We don't use assert immediately here so that we avoid constructing an error
|
| // message if we don't have to.
|
| if (!(value instanceof type)) {
|
| - assertNotReached(opt_message || 'Value ' + value +
|
| - ' is not a[n] ' + (type.name || typeof type));
|
| + assertNotReached(
|
| + opt_message ||
|
| + 'Value ' + value + ' is not a[n] ' + (type.name || typeof type));
|
| }
|
| return value;
|
| }
|
|
|