Has anyone loaded ML5 as an ES6 module?
I have tried:
import ml5 from "https://unpkg.com/ml5@1.3.1/dist/ml5.min.js";
// but no default export
import * as ml5 from "https://unpkg.com/ml5@1.3.1/dist/ml5.min.js";
// but then ml5.handPose does not exist
import {handPose} from "https://unpkg.com/ml5@1.3.1/dist/ml5.min.js";
// and does not export it
I have a question in on their GitHub
