svg-shapes
Version:
Get point data from SVG shapes. Convert point data to an SVG path
19 lines (12 loc) • 483 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.toPath = exports.getPoints = undefined;
var _getPoints = require('./getPoints');
var _getPoints2 = _interopRequireDefault(_getPoints);
var _toPath = require('./toPath');
var _toPath2 = _interopRequireDefault(_toPath);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.getPoints = _getPoints2.default;
exports.toPath = _toPath2.default;