1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-09-26 16:19:03 +02:00

splines + slider refinement

This commit is contained in:
Pomax
2020-09-06 09:08:11 -07:00
parent 9434a71d34
commit 1de1fc9ce3
21 changed files with 324 additions and 258 deletions

View File

@@ -0,0 +1,14 @@
import { enrich } from "./enrich.js";
function create(element) {
if (typeof document !== `undefined`) {
return enrich(document.createElement(element));
}
return {
name: element,
tag: element.toUpperCase(),
};
}
export { create };