Skip to content

Commit

Permalink
Merge pull request #144 from ursm/avoid-legacy-global-flags
Browse files Browse the repository at this point in the history
Avoid using legacy global flags
  • Loading branch information
rwjblue authored Apr 20, 2018
2 parents 0ae7a69 + aec79fd commit ba8f54f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/lib/ext/string.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
singularize
} from '../system/string';

if (Ember.EXTEND_PROTOTYPES === true || Ember.EXTEND_PROTOTYPES.String) {
if (Ember.ENV.EXTEND_PROTOTYPES === true || Ember.ENV.EXTEND_PROTOTYPES.String) {
/**
See {{#crossLink "Ember.String/pluralize"}}{{/crossLink}}
Expand Down

0 comments on commit ba8f54f

Please sign in to comment.