Date: 2020-07-09
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "phaser-types", | |
"author": "Manu Phatak", | |
"version": "3.18.1", | |
"types": "./phaser.d.ts" | |
"peerDependency": { | |
"phaser": "3.18.1" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "phaser-types", | |
"author": "Manu Phatak", | |
"version": "3.18.1", | |
"types": "phaser.d.ts", | |
"peerDependency": { | |
"phaser": "3.18.1" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Response to: | |
# http://blog.honeybadger.io/how-openstruct-and-hashes-can-kill-performance/ | |
# | |
# It's not faire to use `Hash.new.merge(data)` if you can `Hash[data]`. | |
# `Hash[data]` is way faster! Lets compare! | |
# | |
# Read more: http://ruby-doc.org/core-2.2.0/Hash.html#method-c-5B-5D | |
# | |
# [UPDATE] | |
# |
OlderNewer