Index: third_party/pkg/angular/lib/formatter/module.dart |
diff --git a/third_party/pkg/angular/lib/formatter/module.dart b/third_party/pkg/angular/lib/formatter/module.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ea84d0231717fefd6384a93fec7e1133fbb01ae9 |
--- /dev/null |
+++ b/third_party/pkg/angular/lib/formatter/module.dart |
@@ -0,0 +1,36 @@ |
+/** |
+ * |
+ * Formatters for [angular.dart](#angular/angular), a web framework for Dart. A formatter is a |
+ * pure function that performs a transformation on input data from an expression. |
+ * |
+ * This library is included as part of [angular.dart](#angular/angular). It provides all of |
+ * the core formatters available in Angular. You can extend Angular by writing your own formatters |
+ * and providing them as part of a custom library. |
+ * |
+ * Formatters are typically used within `{{ }}` to |
+ * convert data to human-readable form. They may also be used inside repeaters to transform arrays. |
+ * |
+ * For example: |
+ * |
+ * {{ _some_expression_ | json }} |
+ * |
+ * or, in a repeater: |
+ * |
+ * <div ng-repeat="item in items | filter:_predicate_"> |
+ * |
+ * |
+ */ |
+library angular.formatter; |
+ |
+export "package:angular/formatter/module_internal.dart" show |
+ Currency, |
+ Date, |
+ Filter, |
+ Json, |
+ LimitTo, |
+ Lowercase, |
+ Arrayify, |
+ Number, |
+ OrderBy, |
+ Uppercase, |
+ Stringify; |