Index: node_modules/d3-selection/src/matcher.js
===================================================================
--- node_modules/d3-selection/src/matcher.js	(revision e4c61dd6cd86e06265bc2bd91adba84a0f04044a)
+++ node_modules/d3-selection/src/matcher.js	(revision e4c61dd6cd86e06265bc2bd91adba84a0f04044a)
@@ -0,0 +1,12 @@
+export default function(selector) {
+  return function() {
+    return this.matches(selector);
+  };
+}
+
+export function childMatcher(selector) {
+  return function(node) {
+    return node.matches(selector);
+  };
+}
+
