My impression was that boolean arguments in general should be avoided. "The Boolean Trap", as it's called: http://ariya.ofilabs.com/2011/08/hall-of-api-shame-boolean-trap.html https://www.google.com/search?q=boolean+trap For example, `node.clone({ shallow: true })` or `node.clone({ deep: true })` seems much better than `node.clone(true)` or `node.clone(false)`.Received on Monday, 11 November 2013 20:19:27 UTC
This archive was generated by hypermail 2.4.0 : Friday, 17 January 2020 17:14:19 UTC