summaryrefslogtreecommitdiff
path: root/lib/reflectAll.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/reflectAll.js')
-rw-r--r--lib/reflectAll.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/reflectAll.js b/lib/reflectAll.js
new file mode 100644
index 0000000..c4ecd9f
--- /dev/null
+++ b/lib/reflectAll.js
@@ -0,0 +1,7 @@
+'use strict';
+
+import reflect from './reflect';
+
+export default function reflectAll(tasks) {
+ return tasks.map(reflect);
+}