Commit 8f99a045 by Иван Кубота

concatLeft transform added

parent a10e6c27
...@@ -46,6 +46,9 @@ var Transform = (function() { ...@@ -46,6 +46,9 @@ var Transform = (function() {
concat: hookAndConvert(function(val, val2) { concat: hookAndConvert(function(val, val2) {
return val + val2; return val + val2;
}), }),
concatLeft: hookAndConvert(function(val, val2) {
return val2 + val;
}),
toLowerCase: hookAndConvert(function(val) { toLowerCase: hookAndConvert(function(val) {
return (val+'').toLowerCase(); return (val+'').toLowerCase();
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment