jquery.suggestions: Use Object.create( null )
authorFomafix <fomafix@googlemail.com>
Wed, 29 May 2019 22:56:46 +0000 (00:56 +0200)
committerKrinkle <krinklemail@gmail.com>
Mon, 10 Jun 2019 13:25:04 +0000 (13:25 +0000)
commitcd66de16848c0bc4c0e7752bf40a9c397da2bdda
treee947867bcf1185367b6113b7adae39742f0d6da9
parent82f5752cb0a582a3c79ef373d42706c604a15805
jquery.suggestions: Use Object.create( null )

Object.create( null ) creates an Object without predefined methods like
hasOwnProperty or constructor. This allow to use
key in object
instead of
Object.prototype.hasOwnProperty.call( object, key )
even if the key is 'constructor'.

Change-Id: I6ef9019309022a2a990deda685ba71ca61b86df3
resources/src/jquery/jquery.suggestions.js