Source: index.js

// NOTE: commented out because of cloudflare minification bug
// importing core-js to add pollyfills
// to minimize changes switching from browserify
// import "core-js/stable";

// wrapping all the exoports in a MakeupSDK object
// so we end up with global object named MakeupSDK
// to minimize changes switching from browserify
import * as API from "./MakeupSDK.js";
export const MakeupSDK = { ...API };

/**
 * @deprecated since version 4.1. Please us {@link MakeupSDK}
 */
export const MakeUpSDK = MakeupSDK;