UNPKG

198 BJavaScriptView Raw
1import { select } from "d3-selection";
2import "d3-transition";
3
4export default function(o) {
5 Object.defineProperty(o, "sel", {
6 get() {
7 return select(this.el);
8 }
9 });
10
11 return o;
12}