We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ded863 commit 81873f5Copy full SHA for 81873f5
ch05.asciidoc
@@ -96,7 +96,9 @@ Here's how what we had earlier would have looked like when using ES6 maps. As yo
96
const map = new Map()
97
map.set('contra', { description: 'Asynchronous flow control' })
98
map.set('dragula', { description: 'Drag and drop' })
99
-map.set('woofmark', { description: 'Markdown and WYSIWYG editor' })
+map.set('woofmark', {
100
+ description: 'Markdown and WYSIWYG editor'
101
+})
102
console.log([...map])
103
----
104
@@ -667,7 +669,8 @@ function listOwnProperties(input) {
667
669
}
668
670
671
function isObject(value) {
- return Object.prototype.toString.call(value) === '[object Object]'
672
+ return Object.prototype.toString.call(value) ===
673
+ '[object Object]'
674
675
676
0 commit comments