1
0
Fork 0

wip(core): Migrated to named exports only

This commit is contained in:
Joost De Cock 2022-08-28 02:14:39 +02:00
parent 4b12a7330c
commit c09ae4aa69
23 changed files with 592 additions and 557 deletions

View file

@ -1,6 +1,6 @@
import { Bezier } from 'bezier-js'
import Path from './path.mjs'
import Point from './point.mjs'
import { Path } from './path.mjs'
import { Point } from './point.mjs'
export function capitalize(string) {
return string.charAt(0).toUpperCase() + string.slice(1)
@ -410,11 +410,6 @@ export const generatePartTransform = (x, y, rotate, flipX, flipY, part) => {
}
}
/*
* Makes sure an object passed to be attached as a part it not merely a method
*/
export const decoratePartDependency = (obj, name) => (typeof obj === 'function') ? { draft: obj, name } : obj
// Add part-level options
const addPartOptions = (part, config) => {
if (part.options) {
@ -432,6 +427,7 @@ const addPartOptions = (part, config) => {
return config
}
/*
// Helper method for detecting a array with only strings
const isStringArray = val => (Array.isArray(val) && val.length > 0)
? val.reduce((prev=true, cur) => (prev && typeof cur === 'string'))
@ -473,7 +469,7 @@ const mergeOptionGroups = (cur, add) => {
return cur
}
*/
// Add part-level optionGroups
const addPartOptionGroups = (part, config) => {
if (typeof config.optionGroups === 'undefined') {