Skip to content

Commit

Permalink
just some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanpenner committed Jul 8, 2015
1 parent dba41cb commit c3f15cf
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/ember-runtime/lib/system/string.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export default {
@return {String} formatted string
@public
*/
fmt: fmt,
fmt,

/**
Formats the passed string, but first looks up the string in the localized
Expand All @@ -188,7 +188,7 @@ export default {
@return {String} formatted string
@public
*/
loc: loc,
loc,

/**
Splits a string into separate units separated by spaces, eliminating any
Expand All @@ -210,7 +210,7 @@ export default {
@return {Array} array containing the split strings
@public
*/
w: w,
w,

/**
Converts a camelized string into all lower case separated by underscores.
Expand All @@ -227,7 +227,7 @@ export default {
@return {String} the decamelized string.
@public
*/
decamelize: decamelize,
decamelize,

/**
Replaces underscores, spaces, or camelCase with dashes.
Expand All @@ -245,7 +245,7 @@ export default {
@return {String} the dasherized string.
@public
*/
dasherize: dasherize,
dasherize,

/**
Returns the lowerCamelCase form of a string.
Expand All @@ -264,7 +264,7 @@ export default {
@return {String} the camelized string.
@public
*/
camelize: camelize,
camelize,

/**
Returns the UpperCamelCase form of a string.
Expand All @@ -282,7 +282,7 @@ export default {
@return {String} the classified string
@public
*/
classify: classify,
classify,

/**
More general than decamelize. Returns the lower\_case\_and\_underscored
Expand All @@ -301,7 +301,7 @@ export default {
@return {String} the underscored string.
@public
*/
underscore: underscore,
underscore,

/**
Returns the Capitalized form of a string
Expand All @@ -319,7 +319,7 @@ export default {
@return {String} The capitalized string.
@public
*/
capitalize: capitalize
capitalize
};

export {
Expand Down

0 comments on commit c3f15cf

Please sign in to comment.