You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.
given: var ComponentDefinition$1 = function (_GlimmerComponentDefi) {
Adding a wrapping ( and trailing ) before the () would hint to v8 and friends that this shouldn't be pre-parsed, just parsed. This should help minimize initial parse/eval cost.
var ComponentDefinition$1 = (function (_GlimmerComponentDefi) {
Be sure the uglification step doesn't strip these, or it may defeat this..
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
given:
var ComponentDefinition$1 = function (_GlimmerComponentDefi) {
Adding a wrapping
(
and trailing)
before the()
would hint to v8 and friends that this shouldn't be pre-parsed, just parsed. This should help minimize initial parse/eval cost.var ComponentDefinition$1 = (function (_GlimmerComponentDefi) {
Be sure the uglification step doesn't strip these, or it may defeat this..
The text was updated successfully, but these errors were encountered: