不要怂,就是干,撸起袖子干!

Commit 1f1ff221 by Sascha Depold

formatting

1 parent b20ba0f9
Showing with 10 additions and 2 deletions
......@@ -13,12 +13,20 @@ var Utils = module.exports = {
includes: _s.include,
camelizeIf: function(string, condition) {
var result = string
if(condition) result = _.camelize(string)
if(condition) {
result = _.camelize(string)
}
return result
},
underscoredIf: function(string, condition) {
var result = string
if(condition) result = _.underscored(string)
if(condition) {
result = _.underscored(string)
}
return result
}
})
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!