Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
locks committed Jan 26, 2019
1 parent 37d69f1 commit 58f3bec
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/@ember/string/index.ts
Expand Up @@ -292,7 +292,7 @@ if (ENV.EXTEND_PROTOTYPES.String) {
configurable: true,
enumerable: false,
writeable: true,
value: function () {
value() {
return w(this);
},
},
Expand All @@ -309,7 +309,7 @@ if (ENV.EXTEND_PROTOTYPES.String) {
configurable: true,
enumerable: false,
writeable: true,
value: function (this: string, ...args: any[]) {
value(this: string, ...args: any[]) {
return loc(this, args);
},
},
Expand All @@ -326,7 +326,7 @@ if (ENV.EXTEND_PROTOTYPES.String) {
configurable: true,
enumerable: false,
writeable: true,
value: function () {
value() {
return camelize(this);
},
},
Expand All @@ -343,7 +343,7 @@ if (ENV.EXTEND_PROTOTYPES.String) {
configurable: true,
enumerable: false,
writeable: true,
value: function () {
value() {
return decamelize(this);
},
},
Expand All @@ -360,7 +360,7 @@ if (ENV.EXTEND_PROTOTYPES.String) {
configurable: true,
enumerable: false,
writeable: true,
value: function () {
value() {
return dasherize(this);
},
},
Expand All @@ -377,7 +377,7 @@ if (ENV.EXTEND_PROTOTYPES.String) {
configurable: true,
enumerable: false,
writeable: true,
value: function () {
value() {
return underscore(this);
},
},
Expand All @@ -394,7 +394,7 @@ if (ENV.EXTEND_PROTOTYPES.String) {
configurable: true,
enumerable: false,
writeable: true,
value: function () {
value() {
return classify(this);
},
},
Expand All @@ -411,7 +411,7 @@ if (ENV.EXTEND_PROTOTYPES.String) {
configurable: true,
enumerable: false,
writeable: true,
value: function () {
value() {
return capitalize(this);
},
},
Expand Down

0 comments on commit 58f3bec

Please sign in to comment.