1
0
Fork 0
freesewing/packages/brian/src/front.js

15 lines
346 B
JavaScript
Raw Normal View History

2018-08-03 17:44:55 +02:00
import freesewing from "freesewing";
import base from "./base";
var front = {
draft: function(part) {
// prettier-ignore
let {sa, point, points, path, paths, snippet, snippets, final, paperless, macro} = freesewing.utils.shorthand(part);
macro("title", { at: points.title, nr: 1 });
return part;
}
};
export default front;