We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent accfc71 commit 3eb55ebCopy full SHA for 3eb55eb
filter-lowercase.js
@@ -0,0 +1,8 @@
1
+/**
2
+ * Transform an input string to lowercase
3
+ * @param {string} input
4
+ * @return {string} lowercase string
5
+ */
6
+PolymerExpressions.prototype.lowercase = function(input){
7
+ return input.toLowerCase();
8
+};
0 commit comments