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