UNPKG

3d-pie-chart

Version:
10 lines (7 loc) 179 B
import { pie } from "./pie"; const Raphael = require("raphael"); export const createPlugin = () => { return Raphael.fn.pie = function(config) { pie(config, this); }; };